Skip to content

Commit

Permalink
fix: rename SemverVersion to SemverLevel and move it
Browse files Browse the repository at this point in the history
  • Loading branch information
adelkahomolova committed Nov 19, 2019
1 parent ea1b3d0 commit a7c4fc4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/inspectors/package/PackageInspectorBase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,9 @@ export abstract class PackageInspectorBase implements IPackageInspector, IInitia
return undefined;
}
}

export enum SemverLevel {
major = 'major',
minor = 'minor',
patch = 'patch',
}

0 comments on commit a7c4fc4

Please sign in to comment.