From ab5ced7c6a9478e7d5df46eee36f2002f2090d80 Mon Sep 17 00:00:00 2001 From: Hippo Date: Sun, 25 Jul 2021 17:26:42 +0530 Subject: [PATCH] Allow newer versions of node in package.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Till now, they had to be strictly equal to 12.x. Now you can also use newer versions of node (and hopefully they'll work 😛) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ee37f66..a77a0a9 100644 --- a/package.json +++ b/package.json @@ -47,6 +47,6 @@ "webpack-node-externals": "^1.7.2" }, "engines": { - "node": "12.x" + "node": ">=12.x" } }