Skip to content

Commit

Permalink
Make Node version more flexible (#971)
Browse files Browse the repository at this point in the history
**Related Ticket:** #947
follow up of #917

### Description of Changes
I realized that it is better to make the Node version flexible in
package.json, so VEDA-UI users don't have to be on exact Node v20.

### Notes & Questions About Changes
I think v18 is a reasonable choice to be the minimum version number
since 1. We don't have a package that requires specific Node version and
2. 18 is the actively maintained Node at this point
(https://nodejs.org/en/about/previous-releases) 🤔 Is there any more
thing to consider?
  • Loading branch information
hanbyul-here authored May 23, 2024
2 parents 47e47d9 + 8c00e0f commit 2bd79d1
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 @@ -25,7 +25,7 @@
"test": "jest"
},
"engines": {
"node": "20.x.x"
"node": ">=18.0.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
Expand Down

0 comments on commit 2bd79d1

Please sign in to comment.