mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-12 13:58:27 +00:00
9 lines
209 B
TypeScript
9 lines
209 B
TypeScript
#!/usr/bin/env bun
|
|
|
|
import { $ } from "bun"
|
|
import { fileURLToPath } from "node:url"
|
|
|
|
process.chdir(fileURLToPath(new URL("..", import.meta.url)))
|
|
|
|
await $`rm -rf dist`
|
|
await $`bun tsc -p tsconfig.build.json`
|