forked from alampros/react-confetti
-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
Issue
Current pkg.engines.node is set to >=10.18.
- v10 reached End-of-life a long time ago (2021-04-30)
- Using
>=means that this package endorse the use of unstable and "odd major versions"
Suggestion
pkg.engines.node should only use version ranges for stable releases and in best cases only endorse LTS versions.
It could look something like:
{
"engines": {
"node": "^14 || ^16 || ^18"
}
}npm pkg set engines.node='^14 || ^16 || ^18' should probably do the trick.
Reactions are currently unavailable