Skip to content

Commit

Permalink
Fix peer dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
langdal committed Feb 7, 2025
1 parent 8733643 commit bd25586
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 7 deletions.
8 changes: 8 additions & 0 deletions .changeset/chilled-dolphins-fix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
'@boostv/process-optimizer-frontend-core': patch
'@boostv/eslint-config': patch
'@boostv/process-optimizer-frontend-plots': patch
'@boostv/process-optimizer-frontend-ui': patch
---

Loosen peer dependency version ranges
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@
"homepage": "https://github.com/BoostV/process-optimizer-frontend#readme",
"license": "BSD-3-Clause",
"peerDependencies": {
"react": "19.0.0",
"react-dom": "19.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.2"
},
"private": false,
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "10.0.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/plots/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
"homepage": "https://github.com/BoostV/process-optimizer-frontend#readme",
"license": "BSD-3-Clause",
"peerDependencies": {
"react": "19.0.0",
"react-dom": "19.0.0"
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"private": false,
"publishConfig": {
Expand Down
4 changes: 2 additions & 2 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@
"@emotion/styled": "^11.14.0",
"@mui/icons-material": ">=6.4.3",
"@mui/material": ">=6.4.3",
"react": "19.0.0",
"react-dom": "19.0.0"
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"private": false,
"publishConfig": {
Expand Down

0 comments on commit bd25586

Please sign in to comment.