diff options
author | Jordan Harband <ljharb@gmail.com> | 2019-10-22 09:44:50 -0700 |
---|---|---|
committer | Michaël Zasso <targos@protonmail.com> | 2019-11-11 10:24:51 +0100 |
commit | 58c585e3edf8c098a1406f39922c67680b8dbae0 (patch) | |
tree | cdd1fbcea5c310f8879df7dfa43fd42386f07dd4 /deps/npm | |
parent | 22e10fd15ad9d92834538b55e381b5b967aea1ff (diff) | |
download | node-new-58c585e3edf8c098a1406f39922c67680b8dbae0.tar.gz |
deps: npm: patch support for 13.x
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 <targos@protonmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'deps/npm')
-rw-r--r-- | deps/npm/lib/utils/unsupported.js | 3 |
1 files changed, 2 insertions, 1 deletions
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' |