UNPKG

@techmely/utils

Version:

Collection of helpful JavaScript / TypeScript utils

8 lines (6 loc) 387 B
declare function getCurrentGitBranch(): Promise<string>; declare function getTags(): Promise<string[]>; declare function getLastGitTag(delta?: number): Promise<string>; declare function getAppVersion(pkgName: string): Promise<string>; declare function getLastGitCommitHash(): Promise<string>; export { getAppVersion, getCurrentGitBranch, getLastGitCommitHash, getLastGitTag, getTags };