From 8438e498b6e48c5dbe95e697fe3c938e48abee0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Guti=C3=A9rrez?= <35082514+alezmad@users.noreply.github.com> Date: Sat, 4 Apr 2026 21:37:22 +0100 Subject: [PATCH] fix(web): drop dangling @turbostarter/ai and @turbostarter/cms deps after prune MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Step 3 pruned packages/ai + packages/cms but left workspace refs in apps/web/package.json, which blocked pnpm install. Removes the two dangling entries. apps/web source imports remain broken until a later cleanup pass — scope limited to unblocking the broker smoke test. Cleanup debt inventory: 48 files import @turbostarter/ai, 5 files import @turbostarter/cms (53 total, mostly .tsx under src/). Also pins apps/broker's drizzle-orm to 0.44.7 (same as packages/db) since there's no catalog entry for drizzle-orm. Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/broker/package.json | 2 +- apps/web/package.json | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/broker/package.json b/apps/broker/package.json index 1616c45..3667477 100644 --- a/apps/broker/package.json +++ b/apps/broker/package.json @@ -15,7 +15,7 @@ "dependencies": { "@turbostarter/db": "workspace:*", "@turbostarter/shared": "workspace:*", - "drizzle-orm": "catalog:", + "drizzle-orm": "0.44.7", "libsodium-wrappers": "0.7.15", "ws": "8.19.1", "zod": "catalog:" diff --git a/apps/web/package.json b/apps/web/package.json index 2e4f6d3..b9ac9ab 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -23,12 +23,10 @@ "@tanstack/react-query": "catalog:", "@tanstack/react-query-devtools": "catalog:", "@tanstack/react-table": "catalog:", - "@turbostarter/ai": "workspace:*", "@turbostarter/analytics-web": "workspace:*", "@turbostarter/api": "workspace:*", "@turbostarter/auth": "workspace:*", "@turbostarter/billing": "workspace:*", - "@turbostarter/cms": "workspace:*", "@turbostarter/db": "workspace:*", "@turbostarter/email": "workspace:*", "@turbostarter/i18n": "workspace:*",