Skip to content

Commit

Permalink
fix: loosen react dependency versions
Browse files Browse the repository at this point in the history
There are probably other changes that need to be taken to support react 18 fully, but most of it should work with current setup. Other changes will be done in next branch but this at least allows us to try out react 18 without the CI failing.
  • Loading branch information
SimeonC committed Oct 3, 2022
1 parent 13edfac commit 14ee555
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/eslint-config/package.json
Expand Up @@ -39,7 +39,7 @@
},
"peerDependencies": {
"eslint": "^8",
"react": "^17",
"react": ">=17",
"typescript": "4.x"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/scripts/package.json
Expand Up @@ -36,8 +36,8 @@
"mini-css-extract-plugin": "^1",
"razzle": "^4.2.17",
"razzle-dev-utils": "^4.1.0",
"react": "^17",
"react-dom": "^17",
"react": ">=17",
"react-dom": ">=17",
"storybook": "^6.5.10"
},
"dependencies": {
Expand Down

0 comments on commit 14ee555

Please sign in to comment.