Skip to content

Commit

Permalink
tsc 対応
Browse files Browse the repository at this point in the history
  • Loading branch information
voluntas committed Apr 15, 2024
1 parent 22441b5 commit 323a396
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
version: 8
- run: pnpm --version
- run: pnpm install
- run: pnpm run check
- run: pnpm run build
- run: pnpm run lint
- run: pnpm run test
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@

## develop

- [ADD] `tsc --noEmit` で型チェックを行うようにする
- @voluntas
- [UPDATE] Biome 1.6.0 に上げる
- @voluntas
- [CHANGE] オーディオコーデック `LYRA` のサポートを削除する
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"lint": "pnpm -r --filter=./packages/* lint",
"fmt": "pnpm -r --filter=./packages/* fmt",
"test": "pnpm -r --filter=./packages/* test",
"check": "pnpm --filter './packages/*' run check",
"doc": "typedoc",
"release:canary": "./scripts/release_canary.sh"
},
Expand Down
1 change: 1 addition & 0 deletions packages/e2ee/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"build:worker": "tsc --project tsconfig.worker.json",
"lint": "biome lint ./src",
"fmt": "biome format --write ./src",
"check": "echo \"no check\"",
"test": "echo \"no test\""
},
"devDependencies": {
Expand Down
5 changes: 3 additions & 2 deletions packages/go-wasm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"build": "echo \"no build\"",
"lint": "echo \"no lint\"",
"fmt": "echo \"no fmt\"",
"test": "echo \"no test\""
"test": "echo \"no test\"",
"check": "echo \"no check\""
}
}
}
1 change: 1 addition & 0 deletions packages/sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"watch": "rollup -c -w",
"lint": "biome lint ./src",
"fmt": "biome format --write ./src",
"check": "tsc --noEmit",
"test": "vitest run"
},
"devDependencies": {
Expand Down

0 comments on commit 323a396

Please sign in to comment.