From 2a006ce974b598f5efe442cb93af6f5bda862715 Mon Sep 17 00:00:00 2001 From: HiranoMasaaki Date: Tue, 10 Feb 2026 23:39:35 +0900 Subject: [PATCH 1/2] Refactor: Remove unnecessary noExternal from tsup config tsup bundles devDependencies by default, so explicit noExternal declarations for @perstack/tui-components and @perstack/filesystem-storage are redundant. Co-Authored-By: Claude Opus 4.6 --- apps/perstack/tsup.config.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/perstack/tsup.config.ts b/apps/perstack/tsup.config.ts index b8ea1193..4082ca9c 100644 --- a/apps/perstack/tsup.config.ts +++ b/apps/perstack/tsup.config.ts @@ -8,8 +8,6 @@ export const cliConfig: Options = { "bin/cli": "bin/cli.ts", "src/start": "src/start.ts", }, - // Bundle private packages that won't be published to npm - noExternal: ["@perstack/tui-components", "@perstack/filesystem-storage"], } export default defineConfig(cliConfig) From f6f40efa183e531b559de0e2e6b83e3ed0ace3ca Mon Sep 17 00:00:00 2001 From: HiranoMasaaki Date: Tue, 10 Feb 2026 23:44:44 +0900 Subject: [PATCH 2/2] Add: Changeset for noExternal removal Co-Authored-By: Claude Opus 4.6 --- .changeset/remove-noexternal.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/remove-noexternal.md diff --git a/.changeset/remove-noexternal.md b/.changeset/remove-noexternal.md new file mode 100644 index 00000000..bc05e537 --- /dev/null +++ b/.changeset/remove-noexternal.md @@ -0,0 +1,5 @@ +--- +"perstack": patch +--- + +Remove unnecessary noExternal from tsup config