From a809a54403dfb1d5e9836d21322fd7a9fb66772a Mon Sep 17 00:00:00 2001 From: wtho Date: Sun, 5 Dec 2021 19:18:45 +0100 Subject: [PATCH] restrict node version to ">=12.5.0" 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. --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index b9524dd..7fabbc7 100644 --- a/package.json +++ b/package.json @@ -31,6 +31,9 @@ "pretest": "xo", "test": "mocha" }, + "engines": { + "node": ">=12.5.0" + }, "dependencies": { "color-convert": "^2.0.1", "color-string": "^1.9.0"