UNPKG

@jwpkg/gitversion

Version:

Gitversion is a complete customizable git-based release management system

8 lines (7 loc) 271 B
import { VersionBranch } from './configuration'; import { GitTag } from './git'; export type GitSemverTag = { hash?: string; version: string; }; export declare function determineCurrentVersion(tags: GitTag[], branch: VersionBranch, prefix: string): GitSemverTag;