* Simple semver utilities for version comparison * Handles basic semver format: major.minor.patch
| 4 | */ |
| 5 | |
| 6 | interface ParsedVersion { |
| 7 | major: number |
| 8 | minor: number |
| 9 | patch: number |
| 10 | raw: string |
| 11 | } |
| 12 | |
| 13 | /** |
| 14 | * Parse a semver string into components |
nothing calls this directly
no outgoing calls
no test coverage detected