mirror of
https://github.com/browseros-ai/BrowserOS.git
synced 2026-05-18 19:16:22 +00:00
* 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
9 lines
328 B
TypeScript
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' })
|