fix: include web build in main build command
The validate-pack step requires dist/web/standalone/server.js but the build command didn't produce it. Add build-web-if-stale.cjs to the build chain — it skips when up-to-date and rebuilds when needed. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
897237ab0a
commit
1031400ec3
1 changed files with 1 additions and 1 deletions
|
|
@ -47,7 +47,7 @@
|
|||
"build:pi-coding-agent": "npm run build -w @gsd/pi-coding-agent",
|
||||
"build:native-pkg": "npm run build -w @gsd/native",
|
||||
"build:pi": "npm run build:native-pkg && npm run build:pi-tui && npm run build:pi-ai && npm run build:pi-agent-core && npm run build:pi-coding-agent",
|
||||
"build": "npm run build:pi && tsc && npm run copy-resources && npm run copy-themes && npm run copy-export-html",
|
||||
"build": "npm run build:pi && tsc && npm run copy-resources && npm run copy-themes && npm run copy-export-html && node scripts/build-web-if-stale.cjs",
|
||||
"stage:web-host": "node scripts/stage-web-standalone.cjs",
|
||||
"build:web-host": "npm --prefix web run build && npm run stage:web-host",
|
||||
"copy-resources": "node scripts/copy-resources.cjs",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue