Files
BrowserOS/scripts/build/controller-ext.ts
Nikhil 9854870291 feat: better dev workflow (#188)
* fix: controller-ext is built separately

* fix: remove un-used scripts in agent/

* fix: rename to assistant

* fix: add build scripts

* feat: new start:dev to start both

* fix: update gitignore

* feat: --new-ports support for dev:start

* feat: update start-all to support port and new data dir

* fix: add help insturctions for start:dev
2026-01-08 10:09:24 -08:00

9 lines
328 B
TypeScript

import { execSync } from 'node:child_process'
import { dirname, join } from 'node:path'
import { fileURLToPath } from 'node:url'
const MONOREPO_ROOT = join(dirname(fileURLToPath(import.meta.url)), '../..')
console.log('Building controller extension...')
execSync('bun run build:ext', { cwd: MONOREPO_ROOT, stdio: 'inherit' })