From d8aa38c539a73018f604767b40a4698af20b02db Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Tue, 22 Oct 2019 09:44:50 -0700 Subject: deps: npm: patch support for 13.x MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This should keep the npm warning at bay until it is patched upstream. Refs: https://github.com/npm/cli/pull/269 Refs: https://github.com/nodejs/node/issues/30066 PR-URL: https://github.com/nodejs/node/pull/30079 Reviewed-By: Michaƫl Zasso Reviewed-By: Anna Henningsen --- deps/npm/lib/utils/unsupported.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'deps') diff --git a/deps/npm/lib/utils/unsupported.js b/deps/npm/lib/utils/unsupported.js index 20cee157ee..aaae8c4426 100644 --- a/deps/npm/lib/utils/unsupported.js +++ b/deps/npm/lib/utils/unsupported.js @@ -6,7 +6,8 @@ var supportedNode = [ {ver: '9', min: '9.0.0'}, {ver: '10', min: '10.0.0'}, {ver: '11', min: '11.0.0'}, - {ver: '12', min: '12.0.0'} + {ver: '12', min: '12.0.0'}, + {ver: '13', min: '13.0.0'} ] var knownBroken = '<6.0.0' -- cgit v1.2.3