mirror of
https://github.com/anomalyco/opencode.git
synced 2026-04-29 01:07:04 +00: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}`
|