Skip to content

Commit 1fcc009

Browse files
NathanFlurryclaude
andcommitted
fix: build cli-shared before sandbox-agent SDK
The sandbox-agent SDK build script was missing the cli-shared build step, causing DTS build failures in CI when cli-shared wasn't pre-built. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 7eabbf1 commit 1fcc009

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdks/typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"generate:openapi": "SANDBOX_AGENT_SKIP_INSPECTOR=1 cargo run -p sandbox-agent-openapi-gen -- --out ../../docs/openapi.json",
2828
"generate:types": "openapi-typescript ../../docs/openapi.json -o src/generated/openapi.ts && node ./scripts/patch-openapi-types.mjs",
2929
"generate": "pnpm run generate:openapi && pnpm run generate:types",
30-
"build": "pnpm --filter acp-http-client build && if [ -z \"$SKIP_OPENAPI_GEN\" ]; then pnpm run generate:openapi; fi && pnpm run generate:types && tsup",
30+
"build": "pnpm --filter acp-http-client build && pnpm --filter @sandbox-agent/cli-shared build && if [ -z \"$SKIP_OPENAPI_GEN\" ]; then pnpm run generate:openapi; fi && pnpm run generate:types && tsup",
3131
"typecheck": "tsc --noEmit",
3232
"test": "vitest run",
3333
"test:watch": "vitest"

0 commit comments

Comments
 (0)