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 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)