UNPKG
gitversionjs
Version:
latest (1.0.7)
1.0.7
1.0.6
1.0.5
1.0.4
Auto-generates SemVer versions from Git tags and branches, GitFlow-style.
gitversionjs
/
dist
/
config.d.ts
6 lines
(5 loc)
•
195 B
TypeScript
View Raw
1
2
3
4
5
6
export
interface
GitVersionConfig
{
tagPrefix
?:
string
;
branchPrefixes
?:
Record
<
string
,
string
>; }
export
declare
function
loadConfig
(
configFilePath
?:
string
):
Promise
<
GitVersionConfig
>;