Skip to content

Commit 28c29eb

Browse files
wharfeclaude
andcommitted
Fix CI build order: build core before dependent packages
npm run build --workspaces runs packages in parallel, causing adapter-claude, bunshin, and demo to fail when core hasn't built yet. Replaced with explicit three-phase build: core → middleware packages → demo. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 0af5033 commit 28c29eb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"packages/*"
66
],
77
"scripts": {
8-
"build": "npm run build --workspaces",
8+
"build": "npm run build -w packages/core && npm run build -w packages/adapter-claude -w packages/bunshin -w packages/plugin-minesweeper && npm run build -w packages/demo",
99
"typecheck": "npm run typecheck --workspaces",
1010
"test": "npm test --workspaces --if-present",
1111
"changeset": "changeset",

0 commit comments

Comments
 (0)