UNPKG

gitversionjs

Version:

Auto-generates SemVer versions from Git tags and branches, GitFlow-style.

6 lines (5 loc) 195 B
export interface GitVersionConfig { tagPrefix?: string; branchPrefixes?: Record<string, string>; } export declare function loadConfig(configFilePath?: string): Promise<GitVersionConfig>;