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
The engines field in package.json is currently specifying "npm": "^3.0.0", which causes installation to fail on npm 4 and 5.
engines
package.json
"npm": "^3.0.0"
The text was updated successfully, but these errors were encountered:
This isn't a great solution, but while trying to install @storybook/react which depends on podda, I set engine-strict=false in my .npmrc. https://docs.npmjs.com/misc/config#engine-strict
@storybook/react
podda
engine-strict=false
.npmrc
Sorry, something went wrong.
No branches or pull requests
The
engines
field inpackage.json
is currently specifying"npm": "^3.0.0"
, which causes installation to fail on npm 4 and 5.The text was updated successfully, but these errors were encountered: