From 7c961ca50215a5e5b088b10df4d7b3ab7d062fc1 Mon Sep 17 00:00:00 2001 From: Robinson Aizprua Date: Wed, 5 Sep 2018 09:59:48 -0500 Subject: [PATCH 1/2] update package.json file to support node 9.x Some of use are using node 9.x --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0b82e05349..3a40eefdd7 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "graphql-js" ], "engines": { - "node": "6.x || 8.x || >= 10.x" + "node": "6.x || 8.x || 9.x || >= 10.x" }, "scripts": { "watch": "node ./resources/watch.js", From 4615d8ad1e0a5b8905fe5759a96bf9b42f5351a6 Mon Sep 17 00:00:00 2001 From: Ivan Goncharov Date: Wed, 5 Sep 2018 20:36:26 +0300 Subject: [PATCH 2/2] Allow all node versions >= 6.x --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3a40eefdd7..0bda8d1e85 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "graphql-js" ], "engines": { - "node": "6.x || 8.x || 9.x || >= 10.x" + "node": ">= 6.x" }, "scripts": { "watch": "node ./resources/watch.js",