File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed
Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -13,13 +13,13 @@ jobs:
1313 steps :
1414 - uses : actions/checkout@v4
1515 - uses : oven-sh/setup-bun@v2
16- - run : bun install
16+ - run : bun install --frozen-lockfile
1717 - run : bun run build
1818 biome :
1919 name : Biome Checks
2020 runs-on : ubuntu-latest
2121 steps :
2222 - uses : actions/checkout@v4
2323 - uses : oven-sh/setup-bun@v2
24- - run : bun install
24+ - run : bun install --frozen-lockfile
2525 - run : bun run check
Original file line number Diff line number Diff line change 44リポジトリのルートディレクトリで以下のコマンドを実行してください。
55
66``` bash
7- bun install
7+ bun install --frozen-lockfile
88```
99
1010## 開発
1111
1212開発モードを実行するには、以下のコマンドを実行してください。
1313
1414``` bash
15- bun run dev
15+ bun dev
1616```
1717
1818コードをプッシュする前に、コード品質をチェックするために以下のコマンドを実行してください。
1919
2020``` bash
21- bun run lint
21+ bun check
2222```
2323
24- もし ` prettier ` のエラーがある場合は 、以下のコマンドを実行して修正してください。
24+ もしコード品質チェックでエラーがある場合は 、以下のコマンドを実行して修正してください。
2525
2626``` bash
27- bunx prettier . --write
27+ bun fix
2828```
2929
3030## モックモード
Original file line number Diff line number Diff line change 77 ],
88 "scripts" : {
99 "dev" : " bun --filter=@packages/web dev" ,
10+ "dev:mock" : " bun --filter=@packages/web dev:mock" ,
1011 "build" : " cd packages/web && bun run build" ,
1112 "check" : " bunx biome check ." ,
1213 "fix" : " bunx biome check . --fix"
You can’t perform that action at this time.
0 commit comments