Skip to content

Commit

Permalink
fix: extend typescript peer dependency range to include 5.x (#587)
Browse files Browse the repository at this point in the history
* fix: extend typescript peer dependency range to include 5.x

* update typescript dev dependency
  • Loading branch information
rchl committed Mar 26, 2023
1 parent 2b5f581 commit 6e5a51b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -21,7 +21,7 @@
"nuxt": "2.x",
"sass": "^1.59.3",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5",
"typescript": "^5.0.2",
"vue-property-decorator": "^9.1.2"
}
}
4 changes: 2 additions & 2 deletions packages/typescript-build/package.json
Expand Up @@ -21,11 +21,11 @@
"ts-loader": "^8.4.0"
},
"devDependencies": {
"typescript": "^4.9.5"
"typescript": "^5.0.2"
},
"peerDependencies": {
"@nuxt/types": ">=2.13.1",
"typescript": "4.x"
"typescript": "4.x || 5.x"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/typescript-runtime/package.json
Expand Up @@ -23,7 +23,7 @@
},
"peerDependencies": {
"@nuxt/types": ">=2.13.1",
"typescript": "4.x"
"typescript": "4.x || 5.x"
},
"publishConfig": {
"access": "public"
Expand Down
7 changes: 6 additions & 1 deletion yarn.lock
Expand Up @@ -11951,11 +11951,16 @@ typedarray@^0.0.6:
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==

"typescript@^3 || ^4", typescript@^4.9.5:
"typescript@^3 || ^4":
version "4.9.5"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a"
integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==

typescript@^5.0.2:
version "5.0.2"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.0.2.tgz#891e1a90c5189d8506af64b9ef929fca99ba1ee5"
integrity sha512-wVORMBGO/FAs/++blGNeAVdbNKtIh1rbBL2EyQ1+J9lClJ93KiiKe8PmFIVdXhHcyv44SL9oglmfeSsndo0jRw==

ua-parser-js@^1.0.34:
version "1.0.34"
resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-1.0.34.tgz#b33f41c415325839f354005d25a2f588be296976"
Expand Down

0 comments on commit 6e5a51b

Please sign in to comment.