mirror of
https://github.com/PaulHatch/semantic-version.git
synced 2025-12-27 13:08:17 +00:00
12 lines
411 B
TypeScript
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'
|
|
}
|