-
-
Notifications
You must be signed in to change notification settings - Fork 172
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
Error with engines using "||" OR separator for Node versions #315
Comments
Related #212 |
niftylettuce
added a commit
to ladjs/superagent
that referenced
this issue
Jan 7, 2022
This was referenced Jan 7, 2022
niftylettuce
referenced
this issue
in ladjs/superagent
Jan 7, 2022
This was referenced Jan 7, 2022
ghost
mentioned this issue
Jan 8, 2022
1 task
1 task
This was referenced Jan 9, 2022
This was referenced Jan 11, 2022
1 task
This was referenced Feb 1, 2022
Closed
This was referenced Mar 2, 2023
This was referenced Mar 24, 2023
1 task
1 task
1 task
1 task
1 task
This was referenced Apr 23, 2024
1 task
This was referenced Aug 5, 2024
This was referenced Aug 27, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Node docs allow you to use
||
in dependencies, and in our case here, engines field in package.json.If you have a semver range such as
>=8 <=12 || >= 14
it should exclude 13 and either you need Node v8 to 12 or Node v14+.https://docs.npmjs.com/cli/v8/configuring-npm/package-json#dependencies
This project does not support the use of
||
at the moment.The text was updated successfully, but these errors were encountered: