mirror of
https://github.com/PaulHatch/semantic-version.git
synced 2026-04-14 11:14:45 +00:00
Add version type as output
This commit is contained in:
parent
b505a7cf06
commit
e1e99bd214
13 changed files with 51 additions and 33 deletions
|
|
@ -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'
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue