Skip to content

chore: adjust package engines versions #6725

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

Merged
merged 2 commits into from
Apr 8, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
chore: adjust package engines versions
This package does not even target Node.JS so we could even drop the
`node` dependency for `engines.
But lets at least allow the current LTS version (22) along side with LTS
20.

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
  • Loading branch information
susnux committed Apr 5, 2025
commit 7798aca4e229cfc32d29c67d3cea74a01327c431
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 14 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -160,8 +160,20 @@
"webpack-merge": "^6.0.1"
},
"engines": {
"node": "^20.11.0",
"npm": "^10.0.0"
"node": "^20.11.0 || ^22",
"npm": "^10 || ^11"
},
"devEngines": {
"packageManager": {
"name": "npm",
"version": "^10",
"onFail": "error"
},
"runtime": {
"name": "node",
"version": "^22",
"onFail": "error"
}
Comment on lines +163 to +176
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I recall having a script to update all libs/apps

},
"overrides": {
"mdast-util-gfm": {
Loading
Oops, something went wrong.