From 7e2d4ecf6da4dc5ca5d21c28db765f358349b76e Mon Sep 17 00:00:00 2001 From: HiranoMasaaki Date: Tue, 10 Feb 2026 23:13:35 +0900 Subject: [PATCH 1/2] Fix: Bundle @perstack/filesystem-storage into CLI package Co-Authored-By: Claude Opus 4.6 --- apps/perstack/tsup.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/perstack/tsup.config.ts b/apps/perstack/tsup.config.ts index 72a007a2..b8ea1193 100644 --- a/apps/perstack/tsup.config.ts +++ b/apps/perstack/tsup.config.ts @@ -9,7 +9,7 @@ export const cliConfig: Options = { "src/start": "src/start.ts", }, // Bundle private packages that won't be published to npm - noExternal: ["@perstack/tui-components"], + noExternal: ["@perstack/tui-components", "@perstack/filesystem-storage"], } export default defineConfig(cliConfig) From 44d5bb83ecbedcdb59fa3bc85cf7c2b1aef2614a Mon Sep 17 00:00:00 2001 From: HiranoMasaaki Date: Tue, 10 Feb 2026 23:15:44 +0900 Subject: [PATCH 2/2] Add: Changeset for filesystem-storage bundling fix Co-Authored-By: Claude Opus 4.6 --- .changeset/bundle-filesystem-storage.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/bundle-filesystem-storage.md diff --git a/.changeset/bundle-filesystem-storage.md b/.changeset/bundle-filesystem-storage.md new file mode 100644 index 00000000..3062ee47 --- /dev/null +++ b/.changeset/bundle-filesystem-storage.md @@ -0,0 +1,5 @@ +--- +"perstack": patch +--- + +Bundle @perstack/filesystem-storage into CLI package to fix npm install failure