projex
Version:
A command line to manage the workflow
23 lines (22 loc) • 693 B
TypeScript
import { ReleaseType } from 'semver';
export declare const releaseTypeAliases: Record<string, ReleaseType>;
export declare const supportedReleaseTypes: {
major: string;
minor: string;
patch: string;
prerelease: string;
};
export declare const supportedTagNames: {
stable: string;
beta: string;
hkignore: string;
};
export declare const releaseTypesToUpdateChangelog: {
major: string;
minor: string;
patch: string;
};
export declare const supportedReleaseTypesList: string[];
export declare const supportedTagNamesList: string[];
export declare const releaseTypesToUpdateChangelogList: string[];
export declare const tagNamesToUpdateChangelog: string[];