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
path: root/lib
diff options
context:
space:
mode:
authorGar <gar+gh@danger.computer>2022-03-28 16:44:22 +0300
committerLuke Karrys <luke@lukekarrys.com>2022-03-28 23:21:36 +0300
commit738a404454677b78b25ce82a8d2e4c1f46d57ffa (patch)
tree5091675487e9504703fd4412ea30a6713838ba09 /lib
parent0a957f5e2fbcce51c407d22b19e38004d09c51af (diff)
fix: bump knownBroken to <12.5.0
Diffstat (limited to 'lib')
-rw-r--r--lib/cli.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cli.js b/lib/cli.js
index f261dae12..7b87b9445 100644
--- a/lib/cli.js
+++ b/lib/cli.js
@@ -13,7 +13,7 @@ module.exports = async process => {
// checks as early as possible so the user gets the error message.
const semver = require('semver')
const supported = require('../package.json').engines.node
- const knownBroken = '<6.2.0 || 9 <9.3.0'
+ const knownBroken = '<12.5.0'
const nodejsVersion = process.version.replace(/-.*$/, '')
/* eslint-disable no-console */