mirror of
https://github.com/browseros-ai/BrowserOS.git
synced 2026-05-19 19:41:06 +00:00
git-subtree-dir: packages/browseros-agent git-subtree-mainline:8f148d0918git-subtree-split:90bd4be300
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' })
|