-
Notifications
You must be signed in to change notification settings - Fork 392
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
fix: require Node v20+ #4484
base: master
Are you sure you want to change the base?
fix: require Node v20+ #4484
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,11 +87,8 @@ | |
"packages/lwc", | ||
"playground" | ||
], | ||
"engines": { | ||
"node": ">=10" | ||
}, | ||
"volta": { | ||
"node": "20.12.2", | ||
"node": "22.7.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Locally, we may as well use a recent Node version. CI tests can still fail if we use something that doesn't work in Node 18. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I usually prefer to use the oldest supported version. We're more likely to introduce code that works in a new version, but not an old one, than we are the reverse, and I don't like waiting for CI for an annoying (and usually trivial) error. |
||
"yarn": "1.22.22" | ||
}, | ||
"resolutions": { | ||
|
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.
This config does nothing since the root monorepo
package.json
is private.