Skip to content

Commit

Permalink
fix: correct react/react-dom peerDep range
Browse files Browse the repository at this point in the history
current specified range causes npm to quitely fail, now that react@19 is out
  • Loading branch information
AviVahl committed Dec 5, 2024
1 parent f30c7ec commit 81fca34
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 36 deletions.
59 changes: 30 additions & 29 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-hooks": "^5.1.0",
"mocha": "^11.0.1",
"mocha-web": "^2.0.0",
"prettier": "^3.4.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/app-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
}
},
"peerDependencies": {
"react": ">=18.0.0 || ^19.0.0-rc.0",
"react-dom": ">=18.0.0 || ^19.0.0-rc.0"
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {
"@file-services/types": "^9.4.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/codux-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
}
},
"peerDependencies": {
"react": ">=18.0.0 || ^19.0.0-rc.0",
"react-dom": ">=18.0.0 || ^19.0.0-rc.0"
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"files": [
"dist",
Expand Down
4 changes: 2 additions & 2 deletions packages/react-board/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"version": "4.6.0",
"main": "dist/index.js",
"peerDependencies": {
"react": ">=18.0.0 || ^19.0.0-rc.0",
"react-dom": ">=18.0.0 || ^19.0.0-rc.0"
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {
"@wixc3/board-core": "^4.6.0"
Expand Down

0 comments on commit 81fca34

Please sign in to comment.