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

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/utils/unsupported.js3
-rw-r--r--test/tap/unsupported.js3
2 files changed, 4 insertions, 2 deletions
diff --git a/lib/utils/unsupported.js b/lib/utils/unsupported.js
index 09d7784dd..bfed5cdbe 100644
--- a/lib/utils/unsupported.js
+++ b/lib/utils/unsupported.js
@@ -5,7 +5,8 @@ var supportedNode = [
{ver: '8', min: '8.0.0'},
{ver: '9', min: '9.0.0'},
{ver: '10', min: '10.0.0'},
- {ver: '11', min: '11.0.0'}
+ {ver: '11', min: '11.0.0'},
+ {ver: '12', min: '12.0.0'}
]
var knownBroken = '<4.7.0'
diff --git a/test/tap/unsupported.js b/test/tap/unsupported.js
index db604b308..7abc8da74 100644
--- a/test/tap/unsupported.js
+++ b/test/tap/unsupported.js
@@ -29,7 +29,8 @@ var versions = [
['v8.4.0', false, false],
['v9.3.0', false, false],
['v10.0.0-0', false, false],
- ['v11.0.0-0', false, false]
+ ['v11.0.0-0', false, false],
+ ['v12.0.0-0', false, false]
]
test('versions', function (t) {