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