-
-
Notifications
You must be signed in to change notification settings - Fork 26
Update engines field #198
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
Update engines field #198
Conversation
package.json
Outdated
@@ -114,7 +114,7 @@ | |||
}, | |||
"packageManager": "[email protected]", | |||
"engines": { | |||
"node": ">=14.18" | |||
"node": ">=16 || 14 >= 14.18" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is 14 >= 14.18
a valid constraint? If so, what does it mean?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. It means that you need at least node 16, or a version of 14 greater than or equal to 18.
It excludes node 15.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That space is wrong though. I'll go fix that.
New dependencies detected. Learn more about Socket for GitHub ↗︎
|
This is our actual bare minium node right now.
5f5ec80
to
5bc34e9
Compare
This comment was marked as resolved.
This comment was marked as resolved.
Right, we don't want to support Node.js 15 if possible. |
We don't? I thought I'd just dropped it accidentally without dropping it in engines :man_shrugging_nonchalantly: |
This is our actual bare minimum Node.js version right now.
I'd forgotten to exclude versions without Node.js 16 backports (i.e., Node.js 15).
Extracted from #190.