We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error when npm install use-async-memo:
npm install use-async-memo
Could not resolve dependency: peer react@"^16.8.0" from [email protected]
On a yarn managed dependencies it can be fixed with resolutions
yarn
"resolutions": { "react": "17.0.1" }
with npm we have to wait for overrides, and the existing workarounds are not nice
npm
The text was updated successfully, but these errors were encountered:
This is due to the outdated peer dependencies config in package.json. I'll update it asap.
package.json
use-async-memo/package.json
Line 35 in 9d6b7a7
Sorry, something went wrong.
Fixed via 98268b4.
@iki Please reinstall this package or upgrade it to v1.2.3. It should be working now. Thanks for opening this issue.
@awmleer thanks for a super fast fix, works now 💯
awmleer
No branches or pull requests
Error when
npm install use-async-memo
:On a
yarn
managed dependencies it can be fixed with resolutionswith
npm
we have to wait for overrides, and the existing workarounds are not niceThe text was updated successfully, but these errors were encountered: