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:
Eliot M 2026-04-26 18:29:55 +00:00
parent bcf2d2b9c3
commit 30033c31f6

View file

@ -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