Skip to content

Commit

Permalink
fix: ease peer dependency requirements to just major version (#65)
Browse files Browse the repository at this point in the history
The versions were so tightly defined, it made it hard for a
consuming MFE to upgrade minor versions of other packages.
  • Loading branch information
mikix authored Apr 8, 2022
1 parent b592568 commit 0e4201f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@
"eventemitter3": "^4.0.7"
},
"peerDependencies": {
"@edx/frontend-platform": "1.8.4",
"@edx/paragon": "13.17.0",
"prop-types": "15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-redux": "7.1.3",
"react-router": "5.1.2",
"react-router-dom": "5.1.2",
"redux": "4.0.5",
"@edx/frontend-platform": "^1.8.4",
"@edx/paragon": "^13.17.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.1.3",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"@reduxjs/toolkit": "^1.5.1"
},
"devDependencies": {
Expand Down

0 comments on commit 0e4201f

Please sign in to comment.