semantic-version/src/providers/VersionType.ts
2022-10-02 17:17:28 -04:00

12 lines
411 B
TypeScript

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