Add version type as output

This commit is contained in:
Paul Hatcherian 2022-10-02 17:17:28 -04:00
parent b505a7cf06
commit e1e99bd214
13 changed files with 51 additions and 33 deletions

View file

@ -2,11 +2,11 @@
/** Indicates the type of change a particular version change represents */
export enum VersionType {
/** Indicates a major version change */
Major,
Major = 'Major',
/** Indicates a minor version change */
Minor,
Minor = 'Minor',
/** Indicates a patch version change */
Patch,
Patch = 'Patch',
/** Indicates no change--generally this means that the current commit is already tagged with a version */
None
None = 'None'
}