Farzin-Firoozi/react-modern-drawer

Wrong react peerDependency in package.json

Closed this issue · 3 comments

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"
    },

Thanks for the notice.
I'll fix it ASAP.

Version 1.1.1 is published now. 🥳
Your problem should be solved. ✅

wow!
so agile, thanks man ;-)