Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/deps
diff options
context:
space:
mode:
authorJordan Harband <ljharb@gmail.com>2019-10-22 19:44:50 +0300
committerMyles Borins <myles.borins@gmail.com>2019-10-23 10:30:33 +0300
commitd8aa38c539a73018f604767b40a4698af20b02db (patch)
tree63117e884c27ef60299d44cf34ada8ff0d653c72 /deps
parentb964e771171cdac3e2b86b8a68a153c9f6f42790 (diff)
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')
-rw-r--r--deps/npm/lib/utils/unsupported.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/deps/npm/lib/utils/unsupported.js b/deps/npm/lib/utils/unsupported.js
index 20cee157ee4..aaae8c44266 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'