@eighty4/changelog
Version:
Changelog utilities for CICD
10 lines (9 loc) • 396 B
TypeScript
export type RolloverOpts = {
changelogFile: string;
gitTag: string;
nextVersion: string;
};
export declare function parseArgs(args: Array<string>): RolloverOpts;
export declare function nextVersionRolloverFromCliArgs(args: Array<string>): Promise<void>;
export declare function nextVersionRollover(opts: RolloverOpts): Promise<void>;
export declare function getCurrentDate(): string;