Skip to content

Commit

Permalink
restrict node version to ">=12.5.0"
Browse files Browse the repository at this point in the history
Add the "engines" entry to package.json to make node aware of the incompatibility due to Numeric Separators used in this
code base, which are supported since NodeJS v12.5.0.
  • Loading branch information
wtho authored and Qix- committed Feb 11, 2022
1 parent 2df0451 commit a809a54
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
"pretest": "xo",
"test": "mocha"
},
"engines": {
"node": ">=12.5.0"
},
"dependencies": {
"color-convert": "^2.0.1",
"color-string": "^1.9.0"
Expand Down

0 comments on commit a809a54

Please sign in to comment.