fix: patch readme

This commit is contained in:
cpacker
2025-10-25 17:33:08 -07:00
parent 881bf1e36b
commit 2a93f9ab55
2 changed files with 3 additions and 3 deletions

View File

@@ -135,8 +135,8 @@ First, install Bun if you don't have it yet: [https://bun.com/docs/installation]
bun install bun install
# run the CLI from TypeScript sources (pick up changes immediately) # run the CLI from TypeScript sources (pick up changes immediately)
bun run dev:ui bun run dev
bun run dev:ui -- -p "Hello world" # example with args bun run dev -- -p "Hello world" # example with args
``` ```
### Build + link the standalone binary ### Build + link the standalone binary

View File

@@ -48,7 +48,7 @@
"postinstall": "bun scripts/postinstall-patches.js || true" "postinstall": "bun scripts/postinstall-patches.js || true"
}, },
"lint-staged": { "lint-staged": {
"*.{ts,tsx,js,jsx,json,md}": [ "*.{ts,tsx,js,jsx,json}": [
"bunx --bun @biomejs/biome@2.2.5 check --write" "bunx --bun @biomejs/biome@2.2.5 check --write"
] ]
} }