()
| 86 | * Never fetches. Returns what the last background check found. |
| 87 | */ |
| 88 | export function getUpdateMeta(): UpdateMeta { |
| 89 | const config = readConfig(); |
| 90 | return { |
| 91 | version: VERSION, |
| 92 | latestVersion: config.latestVersion, |
| 93 | updateAvailable: config.latestVersion ? isNewerSemver(config.latestVersion, VERSION) : false, |
| 94 | }; |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * Wrap a JSON payload with the _meta version envelope. |
no test coverage detected