Skip to content

Commit

Permalink
fix: broaden package.json#engines.node range
Browse files Browse the repository at this point in the history
Dependabot uses the package.json#engines.node field to determine the
Node.js version to use. It currently does not work with Node.js 22 so
allow Node.js 20 as well.
  • Loading branch information
matijs committed Feb 3, 2025
1 parent b6e326c commit b1bcaff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@
]
},
"engines": {
"//": "Update @types/node when updating the node version here",
"node": "^22",
"//": "Update @types/node to match the highest node version here",
"node": ">=20 <=22",
"pnpm": "^9"
},
"packageManager": "[email protected]+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
Expand Down

0 comments on commit b1bcaff

Please sign in to comment.