(version: Version)
| 33 | * Increment the patch version of a semantic version string |
| 34 | */ |
| 35 | export function incrementPatchVersion(version: Version): Version { |
| 36 | return { ...version, patch: version.patch + 1 } |
| 37 | } |
| 38 | |
| 39 | export function isGreater(v1: Version, v2: Version): boolean { |
| 40 | if (v1.major !== v2.major) { |
no outgoing calls
no test coverage detected