Wrong react peerDependency in package.json
Closed this issue · 3 comments
ali-hosseini-deriv commented
Because of peerDependency that you have added to the package.json it's not possible to use the package with react 17
as of npm 7 came the peerDeps concept had some changes.
simply if you want to make it workable with react 17 you can add
"peerDependencies": {
"react": ">16.0.0"
},
Farzin-Firoozi commented
Thanks for the notice.
I'll fix it ASAP.
Farzin-Firoozi commented
Version 1.1.1
is published now. 🥳
Your problem should be solved. ✅
ali-hosseini-deriv commented
wow!
so agile, thanks man ;-)