Skip to content

Commit

Permalink
Allow any version of node after 16.
Browse files Browse the repository at this point in the history
Node has recently released the version 21 (non LTS).  But this tool doesn't
really run in production, but in the build pipelines and developer's machines
where the Node version can vary widely, but also controlled (in CI build
pipelines).

The only APIs which are used as fairly stable (path, and fs).  So we should
allow the developer to upgrade their node version and still use this plugin to
build their rescript projects with Vite.
  • Loading branch information
mvaled committed Nov 21, 2023
1 parent 1ce9667 commit b58e5de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,6 @@
},
"packageManager": "[email protected]",
"engines": {
"node": "^16 || ^18 || ^20"
"node": ">=16.0"
}
}

0 comments on commit b58e5de

Please sign in to comment.