aykutkardas / react-icomoon

It makes it very simple to use SVG icons in your React and React-Native projects.
https://svgps.app
MIT License
216 stars 22 forks source link

Update react peerDependencies version #28

Closed Eugene-Musika closed 2 years ago

Eugene-Musika commented 2 years ago

Currently react version mentioned in package.json is "^16.4.1"

 "peerDependencies": {
    "react": "^16.4.1"
  },

and it causes error while installing package for react >=17.0.0 with npm. Not a big issue, but you must every time add flag --legacy-peer-deps

I suppose that it will work fine if change peer deps version to this

 "peerDependencies": {
    "react": ">=16.4.1 <18.0.0-0"
  },
aykutkardas commented 2 years ago

Closed with #27