Skip to content

Commit

Permalink
fix: support typescript 5.1 as a peer dependency (#1633)
Browse files Browse the repository at this point in the history
Co-authored-by: Artem Zakharchenko <kettanaito@gmail.com>
  • Loading branch information
gthb and kettanaito committed Jun 8, 2023
1 parent da92465 commit 8e37d9c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ts: ['4.4', '4.5', '4.6', '4.7', '4.8', '4.9', '5.0']
ts: ['4.4', '4.5', '4.6', '4.7', '4.8', '4.9', '5.0', '5.1']
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@
"webpack-http-server": "^0.5.0"
},
"peerDependencies": {
"typescript": ">= 4.4.x <= 5.0.x"
"typescript": ">= 4.4.x <= 5.1.x"
},
"peerDependenciesMeta": {
"typescript": {
Expand Down
3 changes: 3 additions & 0 deletions test/typings/tsconfig.5.1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "./tsconfig.4.7.json"
}

0 comments on commit 8e37d9c

Please sign in to comment.