build: include openai-codex-provider + agent-core in build:pi chain
Some checks failed
sf self-deploy / build, test, and publish server image (push) Failing after 6m43s
sf self-deploy / deploy test and probe (push) Has been skipped
sf self-deploy / promote prod (push) Has been skipped

build:pi-ai depends on @singularity-forge/openai-codex-provider's compiled
.d.ts, but build:pi never built it. tsgo failed with TS2307. Slot it into
the chain along with build:agent-core (same drift) and add the
@types/express devDep needed by the chain.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Mikael Hugo 2026-05-18 02:19:16 +02:00
parent bf5b75b063
commit b77ec24234
2 changed files with 5 additions and 1 deletions

1
package-lock.json generated
View file

@ -73,6 +73,7 @@
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@types/express": "^4.17.25",
"@types/node": "^25.8.0",
"@types/picomatch": "^4.0.3",
"@types/react": "^19.2.14",

View file

@ -47,7 +47,9 @@
"build:native-pkg": "npm --workspace @singularity-forge/native run build",
"build:rpc-client": "npm --workspace @singularity-forge/rpc-client run build",
"build:google-gemini-cli-provider": "npm --workspace @singularity-forge/google-gemini-cli-provider run build",
"build:pi": "npm run build:native-pkg && npm run build:pi-tui && npm run build:google-gemini-cli-provider && npm run build:pi-ai && npm run build:pi-coding-agent",
"build:openai-codex-provider": "npm --workspace @singularity-forge/openai-codex-provider run build",
"build:agent-core": "npm --workspace @singularity-forge/agent-core run build",
"build:pi": "npm run build:native-pkg && npm run build:pi-tui && npm run build:google-gemini-cli-provider && npm run build:openai-codex-provider && npm run build:pi-ai && npm run build:agent-core && npm run build:pi-coding-agent",
"build:daemon": "npm --workspace @singularity-forge/daemon run build",
"build:core": "npm run build:pi && npm run build:rpc-client && npm run build:daemon && npm run check:versioned-json && tsgo && npm run copy-resources && npm run copy-themes && npm run copy-export-html",
"build": "npm run build:core && node scripts/build-web-if-stale.cjs",
@ -170,6 +172,7 @@
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@types/express": "^4.17.25",
"@types/node": "^25.8.0",
"@types/picomatch": "^4.0.3",
"@types/react": "^19.2.14",