From 013e193430785414c5983cdf1e072a61b9563426 Mon Sep 17 00:00:00 2001 From: Sean Silvius Date: Mon, 27 Apr 2026 22:23:58 -0700 Subject: [PATCH 1/2] Drop orphan @rafters/* link deps from apps/ctrl The link: deps for @rafters/color-utils and @rafters/shared landed in 47bf106 with the rationale "for the color intelligence viewer" and a follow-up plan to "switch to npm registry references once the packages are published." Neither happened: no viewer was specced or written (grep apps/ctrl/src for @rafters returns zero hits), and the publish direction reversed -- rafters internal packages are not consumable from outside the rafters workspace under any protocol. A later session reflection (legion 019d65d7) misread these orphans as "the apps/ctrl link: precedent" and froze them into doctrine, which caused this session to almost extend the same mistake into @rafters/ui. Deleting the orphans here so the doctrine has nothing to anchor to. Co-Authored-By: Claude Opus 4.7 (1M context) --- apps/ctrl/package.json | 2 -- pnpm-lock.yaml | 6 ------ 2 files changed, 8 deletions(-) diff --git a/apps/ctrl/package.json b/apps/ctrl/package.json index ddef1a4..8c9a431 100644 --- a/apps/ctrl/package.json +++ b/apps/ctrl/package.json @@ -8,8 +8,6 @@ "preview": "vite preview" }, "dependencies": { - "@rafters/color-utils": "link:/Volumes/store/projects/rafters-studio/rafters/packages/color-utils", - "@rafters/shared": "link:/Volumes/store/projects/rafters-studio/rafters/packages/shared", "@tanstack/react-query": "^5.91.0", "@tanstack/react-router": "^1.168.10", "@tanstack/router-zod-adapter": "^1.81.5", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6eba144..523158b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -26,12 +26,6 @@ importers: apps/ctrl: dependencies: - '@rafters/color-utils': - specifier: link:/Volumes/store/projects/rafters-studio/rafters/packages/color-utils - version: link:../../../rafters/packages/color-utils - '@rafters/shared': - specifier: link:/Volumes/store/projects/rafters-studio/rafters/packages/shared - version: link:../../../rafters/packages/shared '@tanstack/react-query': specifier: ^5.91.0 version: 5.91.0(react@19.2.4) From c88d704c8c448b05e9231e143737932bc27fc83d Mon Sep 17 00:00:00 2001 From: Sean Silvius Date: Mon, 27 Apr 2026 22:39:39 -0700 Subject: [PATCH 2/2] Re-run CI on public repo