Skip to content

Commit 6e5a51b

Browse files
authored
fix: extend typescript peer dependency range to include 5.x (#587)
* fix: extend typescript peer dependency range to include 5.x * update typescript dev dependency
1 parent 2b5f581 commit 6e5a51b

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"nuxt": "2.x",
2222
"sass": "^1.59.3",
2323
"ts-jest": "^29.0.5",
24-
"typescript": "^4.9.5",
24+
"typescript": "^5.0.2",
2525
"vue-property-decorator": "^9.1.2"
2626
}
2727
}

packages/typescript-build/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
"ts-loader": "^8.4.0"
2222
},
2323
"devDependencies": {
24-
"typescript": "^4.9.5"
24+
"typescript": "^5.0.2"
2525
},
2626
"peerDependencies": {
2727
"@nuxt/types": ">=2.13.1",
28-
"typescript": "4.x"
28+
"typescript": "4.x || 5.x"
2929
},
3030
"publishConfig": {
3131
"access": "public"

packages/typescript-runtime/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424
"peerDependencies": {
2525
"@nuxt/types": ">=2.13.1",
26-
"typescript": "4.x"
26+
"typescript": "4.x || 5.x"
2727
},
2828
"publishConfig": {
2929
"access": "public"

yarn.lock

+6-1
Original file line numberDiff line numberDiff line change
@@ -11951,11 +11951,16 @@ typedarray@^0.0.6:
1195111951
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
1195211952
integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==
1195311953

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

11959+
typescript@^5.0.2:
11960+
version "5.0.2"
11961+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.0.2.tgz#891e1a90c5189d8506af64b9ef929fca99ba1ee5"
11962+
integrity sha512-wVORMBGO/FAs/++blGNeAVdbNKtIh1rbBL2EyQ1+J9lClJ93KiiKe8PmFIVdXhHcyv44SL9oglmfeSsndo0jRw==
11963+
1195911964
ua-parser-js@^1.0.34:
1196011965
version "1.0.34"
1196111966
resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-1.0.34.tgz#b33f41c415325839f354005d25a2f588be296976"

0 commit comments

Comments
 (0)