Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
chore: pin ts version
Browse files Browse the repository at this point in the history
The TypeScript project [release breaking changes as minor versions](microsoft/TypeScript#41563 (comment))
so pin to `4.0.x` until we can do the refactoring needed to upgrade
to `4.1.x`.
  • Loading branch information
achingbrain committed Nov 20, 2020
1 parent 288a259 commit 14f81ef
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion examples/types-use-ipfs-from-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"ipfs": "^0.52.1"
},
"devDependencies": {
"typescript": "^4.0.3"
"typescript": "4.0.x"
},
"scripts": {
"test": "tsc --noEmit"
Expand Down
2 changes: 1 addition & 1 deletion examples/types-use-ipfs-from-typed-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"ipfs": "^0.52.1"
},
"devDependencies": {
"typescript": "^4.0.3"
"typescript": "4.0.x"
},
"scripts": {
"test": "tsc --noEmit"
Expand Down
2 changes: 1 addition & 1 deletion packages/ipfs-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
"sinon": "^9.0.3",
"string-argv": "^0.3.1",
"temp-write": "^4.0.0",
"typescript": "^4.0.3"
"typescript": "4.0.x"
},
"optionalDependencies": {
"prom-client": "^12.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/ipfs-core-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@
"devDependencies": {
"aegir": "^28.2.0",
"rimraf": "^3.0.2",
"typescript": "^4.0.3"
"typescript": "4.0.x"
}
}
2 changes: 1 addition & 1 deletion packages/ipfs-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,6 @@
"nanoid": "^3.1.12",
"rimraf": "^3.0.2",
"sinon": "^9.0.3",
"typescript": "^4.0.3"
"typescript": "4.0.x"
}
}
2 changes: 1 addition & 1 deletion packages/ipfs-http-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"it-concat": "^1.0.1",
"nock": "^13.0.2",
"rimraf": "^3.0.2",
"typescript": "^4.0.3"
"typescript": "4.0.x"
},
"engines": {
"node": ">=10.3.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/ipfs-http-gateway/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@
"file-type": "^16.0.0",
"rimraf": "^3.0.2",
"sinon": "^9.0.3",
"typescript": "^4.0.3"
"typescript": "4.0.x"
}
}
2 changes: 1 addition & 1 deletion packages/ipfs-http-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"rimraf": "^3.0.2",
"sinon": "^9.0.3",
"stream-to-promise": "^3.0.0",
"typescript": "^4.0.3"
"typescript": "4.0.x"
},
"optionalDependencies": {
"prom-client": "^12.0.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/ipfs-message-port-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"ipfs-core": "^0.2.1",
"ipfs-message-port-server": "^0.4.1",
"rimraf": "^3.0.2",
"typescript": "^4.0.3"
"typescript": "4.0.x"
},
"engines": {
"node": ">=10.3.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/ipfs-message-port-protocol/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"devDependencies": {
"aegir": "^28.2.0",
"rimraf": "^3.0.2",
"typescript": "^4.0.3",
"typescript": "4.0.x",
"uint8arrays": "^1.1.0"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion packages/ipfs-message-port-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"@types/it-all": "^1.0.0",
"aegir": "^28.2.0",
"rimraf": "^3.0.2",
"typescript": "^4.0.3"
"typescript": "4.0.x"
},
"engines": {
"node": ">=10.3.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/ipfs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"libp2p-webrtc-star": "^0.20.1",
"merge-options": "^2.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.0.3",
"typescript": "4.0.x",
"wrtc": "^0.4.6"
},
"typesVersions": {
Expand Down

0 comments on commit 14f81ef

Please sign in to comment.