Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/static-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: bun install --frozen-lockfile
- run: bun run build
biome:
name: Biome Checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: bun install --frozen-lockfile
- run: bun run check
10 changes: 5 additions & 5 deletions docs/developer_readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,27 @@
リポジトリのルートディレクトリで以下のコマンドを実行してください。

```bash
bun install
bun install --frozen-lockfile
```

## 開発

開発モードを実行するには、以下のコマンドを実行してください。

```bash
bun run dev
bun dev
```

コードをプッシュする前に、コード品質をチェックするために以下のコマンドを実行してください。

```bash
bun run lint
bun check
```

もし `prettier` のエラーがある場合は、以下のコマンドを実行して修正してください。
もしコード品質チェックでエラーがある場合は、以下のコマンドを実行して修正してください。

```bash
bunx prettier . --write
bun fix
```

## モックモード
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
],
"scripts": {
"dev": "bun --filter=@packages/web dev",
"dev:mock": "bun --filter=@packages/web dev:mock",
"build": "cd packages/web && bun run build",
"check": "bunx biome check .",
"fix": "bunx biome check . --fix"
Expand Down
Loading