| 8 | const REGISTRY_URL = `https://registry.npmjs.org/${PACKAGE_NAME}/latest`; |
| 9 | |
| 10 | export interface VersionCheckResult { |
| 11 | currentVersion: string; |
| 12 | latestVersion: string | null; |
| 13 | hasUpdate: boolean; |
| 14 | checked: boolean; |
| 15 | } |
| 16 | |
| 17 | /** |
| 18 | * Compare two semver version strings. |
nothing calls this directly
no outgoing calls
no test coverage detected