From 07e1c06ca10e31a2bc75601a9fc2ba9511a0621a Mon Sep 17 00:00:00 2001 From: Maxi Date: Fri, 3 Jul 2026 19:45:33 +0100 Subject: [PATCH] fix(cli): build @parallax/slack during prepack MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit prepare-package.mjs copies packages/slack/dist into the bundled package but never built it — the build step was missing from main(). On a clean CI checkout packages/slack/dist does not exist, so prepack failed with ENOENT during the npm publish. Add the slack build alongside the other bundled packages. Co-Authored-By: Claude Opus 4.8 --- packages/cli/scripts/prepare-package.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/cli/scripts/prepare-package.mjs b/packages/cli/scripts/prepare-package.mjs index d19eec0..a7fddea 100644 --- a/packages/cli/scripts/prepare-package.mjs +++ b/packages/cli/scripts/prepare-package.mjs @@ -119,6 +119,7 @@ async function main() { runPnpm(['--filter', '@parallax/common', 'build']) runPnpm(['--filter', '@parallax/orchestrator', 'build']) runPnpm(['--filter', '@parallax/ui', 'build']) + runPnpm(['--filter', '@parallax/slack', 'build']) runPnpm(['--filter', 'parallax-cli', 'build']) const cliPackageJson = JSON.parse(await fs.readFile(cliPackageJsonPath, 'utf8'))