-
-
Notifications
You must be signed in to change notification settings - Fork 186
New issue
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
Yarn install error #67
Comments
|
For me the |
Yep, the issue might be that this in package.json is probably wrong: "engines": {
"node": "^4.0.0"
}, Better use: "engines": {
"node": ">=4.0.0"
}, |
@swernerx Thanks for pointing that out. Should be fixed with |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Not a huge issue, but yarn throws the following error upon install:
loader-utils@1.0.0: The engine "node" is incompatible with this module. Expected version "^4.0.0".
therefore causing the install to fail. I'm more or less pulling this issue to let others know to mitigate this error you must useyarn install --ignore-flags
until the node version is fixed/updated in thepackage.json
.The text was updated successfully, but these errors were encountered: