fix: populate KNOWN_PACKAGES with all workspace packages for 'mosaic update'
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/pr/ci Pipeline was successful

- Remove @mosaicstack/cli (absorbed into @mosaicstack/mosaic)
- Add all 21 remaining workspace packages so the multi-package
  update checker actually covers every published package
This commit is contained in:
Jarvis
2026-04-04 22:49:45 -05:00
parent 9a53d55678
commit c7691d9807

View File

@@ -127,10 +127,28 @@ export function semverLt(a: string, b: string): boolean {
// ─── Known packages for checkForAllUpdates() ────────────────────────────── // ─── Known packages for checkForAllUpdates() ──────────────────────────────
const KNOWN_PACKAGES = [ const KNOWN_PACKAGES = [
'@mosaicstack/mosaic', '@mosaicstack/agent',
'@mosaicstack/cli', '@mosaicstack/auth',
'@mosaicstack/brain',
'@mosaicstack/config',
'@mosaicstack/coord',
'@mosaicstack/db',
'@mosaicstack/design-tokens',
'@mosaicstack/discord-plugin',
'@mosaicstack/forge',
'@mosaicstack/gateway', '@mosaicstack/gateway',
'@mosaicstack/log',
'@mosaicstack/macp',
'@mosaicstack/memory',
'@mosaicstack/mosaic',
'@mosaicstack/oc-framework-plugin',
'@mosaicstack/oc-macp-plugin',
'@mosaicstack/prdy',
'@mosaicstack/quality-rails', '@mosaicstack/quality-rails',
'@mosaicstack/queue',
'@mosaicstack/storage',
'@mosaicstack/telegram-plugin',
'@mosaicstack/types',
]; ];
// ─── Multi-package types ────────────────────────────────────────────────── // ─── Multi-package types ──────────────────────────────────────────────────