summaryrefslogtreecommitdiffhomepage
path: root/script/format.ts
blob: 37ab2197d0b7c21d1fb1f114394cfbc13eb094c1 (plain)
1
2
3
4
5
6
7
#!/usr/bin/env bun

import { $ } from "bun"

const dir = Bun.argv[2] ?? "."

await $`bun run prettier --ignore-unknown --write ${dir}`