Skip to content

Commit

Permalink
Move @types/react dependency from ^ back to ~ semver range.
Browse files Browse the repository at this point in the history
There were some concerns that minor updates in these typings can be backwards incompatible. We are only updating @types/react because those are the types we have as dependencies (rather than just devDependencies).
  • Loading branch information
jasongrout committed May 24, 2019
1 parent 0ec21bb commit 1a0ed72
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion packages/apputils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"@phosphor/signaling": "^1.2.2",
"@phosphor/virtualdom": "^1.1.2",
"@phosphor/widgets": "^1.6.0",
"@types/react": "^16.8.18",
"@types/react": "~16.8.18",
"react": "~16.8.4",
"react-dom": "~16.8.4",
"sanitize-html": "~1.20.1"
Expand Down
2 changes: 1 addition & 1 deletion packages/cells/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"react": "~16.8.4"
},
"devDependencies": {
"@types/react": "^16.8.18",
"@types/react": "~16.8.18",
"rimraf": "~2.6.2",
"typedoc": "^0.14.2",
"typescript": "~3.4.3"
Expand Down
2 changes: 1 addition & 1 deletion packages/json-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"react-json-tree": "^0.11.0"
},
"devDependencies": {
"@types/react": "^16.8.18",
"@types/react": "~16.8.18",
"@types/react-dom": "^16.8.4",
"@types/react-highlighter": "^0.3.4",
"@types/react-json-tree": "^0.6.11",
Expand Down
2 changes: 1 addition & 1 deletion packages/launcher/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"react": "~16.8.4"
},
"devDependencies": {
"@types/react": "^16.8.18",
"@types/react": "~16.8.18",
"rimraf": "~2.6.2",
"typedoc": "^0.14.2",
"typescript": "~3.4.3"
Expand Down
2 changes: 1 addition & 1 deletion packages/settingeditor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"react-dom": "~16.8.4"
},
"devDependencies": {
"@types/react": "^16.8.18",
"@types/react": "~16.8.18",
"@types/react-dom": "^16.8.4",
"rimraf": "~2.6.2",
"typedoc": "^0.14.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/statusbar-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"@phosphor/widgets": "^1.6.0"
},
"devDependencies": {
"@types/react": "^16.8.18",
"@types/react": "~16.8.18",
"@types/react-dom": "^16.8.4",
"rimraf": "~2.6.2",
"typedoc": "^0.14.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"react": "~16.8.4"
},
"devDependencies": {
"@types/react": "^16.8.18",
"@types/react": "~16.8.18",
"rimraf": "~2.6.2",
"typedoc": "^0.14.2",
"typescript": "~3.4.3"
Expand Down
2 changes: 1 addition & 1 deletion packages/vdom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"react-dom": "~16.8.4"
},
"devDependencies": {
"@types/react": "^16.8.18",
"@types/react": "~16.8.18",
"@types/react-dom": "^16.8.4",
"rimraf": "~2.6.2",
"typedoc": "^0.14.2",
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1969,7 +1969,7 @@
dependencies:
"@types/react" "*"

"@types/react@*", "@types/react@^16.8.18":
"@types/react@*", "@types/react@~16.8.18":
version "16.8.18"
resolved "https://registry.yarnpkg.com/@types/react/-/react-16.8.18.tgz#fe66fb748b0b6ca9709d38b87b2d1356d960a511"
integrity sha512-lUXdKzRqWR4FebR5tGHkLCqnvQJS4fdXKCBrNGGbglqZg2gpU+J82pMONevQODUotATs9fc9k66bx3/St8vReg==
Expand Down

0 comments on commit 1a0ed72

Please sign in to comment.