Skip to content

Commit

Permalink
loosen react-redux to mitigate install warning (#220)
Browse files Browse the repository at this point in the history
Align the react-redux dependency constraint across @folio/stripes
and platform-complete. Mismatched constraints cause build warnings
in the parent package like
```
warning " > @folio/[email protected]" has incorrect peer dependency "react-redux@~8.0.5".
```

Refs STRIPES-894
  • Loading branch information
zburke authored Oct 16, 2023
1 parent 5a62d45 commit 9e9ae2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@
"devDependencies": {
"@folio/eslint-config-stripes": "^7.0.0",
"eslint": "^7.32.0",
"react-redux": "~8.0.5"
"react-redux": "^8.0.5"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "~8.0.5"
"react-redux": "^8.0.5"
}
}

0 comments on commit 9e9ae2f

Please sign in to comment.