mirror of
https://github.com/anomalyco/opencode.git
synced 2026-04-30 05:29:53 +00:00
7 lines
135 B
TypeScript
Executable file
7 lines
135 B
TypeScript
Executable file
#!/usr/bin/env bun
|
|
|
|
import { $ } from "bun"
|
|
|
|
const dir = Bun.argv[2] ?? "."
|
|
|
|
await $`bun run prettier --ignore-unknown --write ${dir}`
|