-
-
Notifications
You must be signed in to change notification settings - Fork 18
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
Refresh dependencies and list of supported Node.js versions #219
Conversation
kibertoad
commented
May 3, 2024
- Updates runtime dependencies to latest versions
- Adds recent Node.js runtimes to CI
- Updates TypeScript and related dependencies
- Bumps expected engine version to the minimum one included in CI
package.json
Outdated
@@ -30,7 +30,7 @@ | |||
}, | |||
"author": "Matteo Collina <hello@matteocollina.com>", | |||
"engines": { | |||
"node": ">=10" | |||
"node": ">=14" |
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.
Since Node 10 and 12 is not included in CI, it's not really possible to guarantee that they are still supported.
@@ -30,7 +30,7 @@ | |||
}, | |||
"author": "Matteo Collina <hello@matteocollina.com>", | |||
"engines": { | |||
"node": ">=10" | |||
"node": ">=16" |
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.
Two reasons for this change:
- CI already was not executed on 10 and 12 before this change
- Newer TypeScript linter doesn't work on Node < 16. If for whatever reason it is important to preserve compatibility with Node 14, I can separate CI runs for linting and tests, but 14 has been EOL for a while anyway.
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.
lgtm
This is ok. However I would need a bunch of PRs to update/refresh this everywhere. Could you help with that as well?
@mcollina Of course! Can you give a list of repos? |
Lines 17 to 22 in 061c68a
|
Will go over them this week |