Skip to content

Commit 041d8ec

Browse files
authored
Merge pull request #54 from ut-code/update-readme
some patches
2 parents 6db3a12 + 417640c commit 041d8ec

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/static-checks.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

docs/developer_readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,27 @@
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
## モックモード

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
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"

0 commit comments

Comments
 (0)