mirror of
https://fastgit.cc/https://github.com/anomalyco/opencode
synced 2026-04-21 13:21:17 +08:00
8 lines
135 B
TypeScript
Executable File
8 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}`
|