Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:shiguredo/sora-js-sdk into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
voluntas committed Apr 15, 2024
2 parents 73d4a22 + 713c774 commit 3a1a29b
Show file tree
Hide file tree
Showing 8 changed files with 152 additions and 284 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
- run: pnpm install
- run: pnpm run build
- run: pnpm run lint
- run: pnpm run check
- run: pnpm run test
- name: Slack Notification
if: failure()
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@

- [UPDATE] Biome 1.6.4 に上げる
- @voluntas
- [ADD] `tsc --noEmit` で型チェックを行うようにする
- @voluntas
- [CHANGE] オーディオコーデック `LYRA` のサポートを削除する
- @tnamao
- [CHANGE] シグナリングオプションの `multistream` は false の時のみレガシーストリームを使用する
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ limitations under the License.
- [Sora Unity SDK サンプル集](https://github.com/shiguredo/sora-unity-sdk-samples)
- [Sora Unity SDK ドキュメント](https://sora-unity-sdk.shiguredo.jp/)
- [Sora Python SDK](https://github.com/shiguredo/sora-python-sdk)
- [Sora Python SDK サンプル集](https://github.com/shiguredo/sora-python-sdk-samples)
- [Sora Python SDK ドキュメント](https://sora-python-sdk.shiguredo.jp/)
- [Sora C SDK](https://github.com/shiguredo/sora-c-sdk)

Expand Down
11 changes: 6 additions & 5 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 -r --filter=./packages/* check",
"doc": "typedoc",
"release:canary": "./scripts/release_canary.sh"
},
Expand All @@ -31,16 +32,16 @@
],
"devDependencies": {
"@biomejs/biome": "1.6.4",
"@playwright/test": "1.42.1",
"typedoc": "0.25.12",
"typescript": "5.4.3",
"@playwright/test": "1.43.1",
"typedoc": "0.25.13",
"typescript": "5.4.5",
"vite": "5.2.8",
"vitest": "1.4.0"
"vitest": "1.5.0"
},
"resolutions": {
"get-pkg-repo": "5.0.0"
},
"packageManager": "[email protected].5",
"packageManager": "[email protected].7",
"engines": {
"node": ">=18"
}
Expand Down
3 changes: 2 additions & 1 deletion packages/e2ee/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,14 @@
"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": {
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-replace": "5.0.5",
"@rollup/plugin-typescript": "11.1.6",
"rollup": "4.13.2",
"rollup": "4.14.2",
"tslib": "2.6.2"
},
"dependencies": {
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\""
}
}
}
3 changes: 2 additions & 1 deletion 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 All @@ -13,7 +14,7 @@
"@rollup/plugin-replace": "5.0.5",
"@rollup/plugin-typescript": "11.1.6",
"jsdom": "24.0.0",
"rollup": "4.13.2",
"rollup": "4.14.2",
"rollup-plugin-delete": "2.0.0"
},
"dependencies": {
Expand Down
Loading

0 comments on commit 3a1a29b

Please sign in to comment.