From eb7319e66b63007604e99e52d4dd444dc111cdc7 Mon Sep 17 00:00:00 2001 From: Vance Ingalls Date: Sun, 22 Mar 2026 20:12:51 -0700 Subject: [PATCH] fix: change workspace:* to workspace:^ for npm publish compatibility pnpm converts workspace:^ to ^X.Y.Z during publish, but workspace:* was left unconverted in the registry. This caused install failures for external consumers. Co-Authored-By: Claude Opus 4.6 (1M context) --- packages/engine/package.json | 2 +- packages/producer/package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/engine/package.json b/packages/engine/package.json index 0366e7e43..77c8633bb 100644 --- a/packages/engine/package.json +++ b/packages/engine/package.json @@ -15,7 +15,7 @@ }, "dependencies": { "@hono/node-server": "^1.13.0", - "@hyperframes/core": "workspace:*", + "@hyperframes/core": "workspace:^", "hono": "^4.6.0", "linkedom": "^0.18.12", "puppeteer": "^24.0.0", diff --git a/packages/producer/package.json b/packages/producer/package.json index aae1f72b6..6ee43383f 100644 --- a/packages/producer/package.json +++ b/packages/producer/package.json @@ -39,8 +39,8 @@ "prepublishOnly": "pnpm build" }, "dependencies": { - "@hyperframes/core": "workspace:*", - "@hyperframes/engine": "workspace:*", + "@hyperframes/core": "workspace:^", + "@hyperframes/engine": "workspace:^", "@fontsource/archivo-black": "^5.2.8", "@fontsource/eb-garamond": "^5.2.7", "@fontsource/ibm-plex-mono": "^5.2.7",