mirror of
https://github.com/techforces-ai/Cial.git
synced 2026-05-15 21:14:12 +00:00
fix(dev:tenant): exec compiled supervisor.dev.js (tsx isn't a root dep)
The entrypoint tried `pnpm exec tsx supervisor.dev.ts` but tsx is only in cial-core/back + cial-platform/back devDeps, not at the workspace root — `tsx not found`. The edge prebuild (`tsc -b`) already compiles supervisor.dev.ts → dist/supervisor.dev.js, so just node-exec the JS. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
bcf2d2b9c3
commit
30033c31f6
1 changed files with 2 additions and 1 deletions
|
|
@ -54,5 +54,6 @@ log "pre-building @cial/protocol + @cial/sdk + @cial/edge"
|
|||
pnpm --filter @cial/protocol --filter @cial/sdk --filter @cial/edge build
|
||||
|
||||
# ── 4. exec supervisor ─────────────────────────────────────────────────
|
||||
# The edge prebuild above (tsc -b) compiles supervisor.dev.ts → dist/.
|
||||
log "starting dev supervisor"
|
||||
exec pnpm exec tsx /workspace/cial-core/edge/src/supervisor.dev.ts
|
||||
exec node /workspace/cial-core/edge/dist/supervisor.dev.js
|
||||
|
|
|
|||
Loading…
Reference in a new issue