From 55557babca7e6ebe27984e21a0620bd660ee1d14 Mon Sep 17 00:00:00 2001 From: Myles Borins Date: Tue, 19 Dec 2017 22:16:46 -0500 Subject: [PATCH] deps: manually add 10.x support to npm MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently npm explicitly doesn't support 10.x and will fail on master. This patch manually adds support for 10.x so that we can keep an up to date version of npm on master. refs: https://github.com/nodejs/node/pull/17535 Backport-PR-URL: https://github.com/nodejs/node/pull/19560 PR-URL: https://github.com/nodejs/node/pull/17777 Reviewed-By: Michaƫl Zasso Reviewed-By: James M Snell Reviewed-By: Ruben Bridgewater Reviewed-By: Anna Henningsen Reviewed-By: Gibson Fahnestock --- deps/npm/lib/utils/unsupported.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deps/npm/lib/utils/unsupported.js b/deps/npm/lib/utils/unsupported.js index 15fa7396d001db..d1b0ee0b1337ef 100644 --- a/deps/npm/lib/utils/unsupported.js +++ b/deps/npm/lib/utils/unsupported.js @@ -5,7 +5,8 @@ var supportedNode = [ {ver: '6', min: '6.0.0'}, {ver: '7', min: '7.0.0'}, {ver: '8', min: '8.0.0'}, - {ver: '9', min: '9.0.0'} + {ver: '9', min: '9.0.0'}, + {ver: '10', min: '10.0.0'} ] var knownBroken = '<4.7.0'