From 116b91d2aef80ed887359e6d3d4d231f35d873d0 Mon Sep 17 00:00:00 2001 From: Jarvis Date: Sat, 4 Apr 2026 20:51:09 -0500 Subject: [PATCH] fix(packages): republish @mosaic/config and bump dependents The published @mosaic/config@0.0.1 on the Gitea registry is the stale tooling-configs package (tsconfig/eslint/prettier) with only subpath exports. When the package was repurposed in 04a80fb9 as the runtime config loader, its version was never bumped, so consumers that pull from the registry still get the old tarball. This caused `mosaic gateway install` to fail with ERR_PACKAGE_PATH_NOT_EXPORTED when gateway imported loadConfig from @mosaic/config at runtime. - Bump @mosaic/config to 0.0.2 so CI publishes the runtime variant - Bump @mosaic/gateway to 0.0.5 to republish with the fixed dep (0.1.0 was an unintended semver jump; deleted from registry to restore 0.0.x lineage) - Bump @mosaic/mosaic to 0.0.19 so the CLI ships with the fixed transitive dep resolution Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/gateway/package.json | 2 +- packages/config/package.json | 2 +- packages/mosaic/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/gateway/package.json b/apps/gateway/package.json index 168a3ed..e8fade3 100644 --- a/apps/gateway/package.json +++ b/apps/gateway/package.json @@ -1,6 +1,6 @@ { "name": "@mosaic/gateway", - "version": "0.1.0", + "version": "0.0.5", "repository": { "type": "git", "url": "https://git.mosaicstack.dev/mosaic/mosaic-stack.git", diff --git a/packages/config/package.json b/packages/config/package.json index 2488d53..03d4564 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -1,6 +1,6 @@ { "name": "@mosaic/config", - "version": "0.0.1", + "version": "0.0.2", "repository": { "type": "git", "url": "https://git.mosaicstack.dev/mosaic/mosaic-stack.git", diff --git a/packages/mosaic/package.json b/packages/mosaic/package.json index d4ee0d4..4db50f9 100644 --- a/packages/mosaic/package.json +++ b/packages/mosaic/package.json @@ -1,6 +1,6 @@ { "name": "@mosaic/mosaic", - "version": "0.0.18", + "version": "0.0.19", "repository": { "type": "git", "url": "https://git.mosaicstack.dev/mosaic/mosaic-stack.git",