Skip to content

Commit

Permalink
fix(generic): blacklist NPM 5.4.[01] on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
malept committed Sep 18, 2017
1 parent 5ebef3d commit 063caca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/util/check-system.js
Expand Up @@ -17,7 +17,9 @@ async function checkNodeVersion() {
}

const NPM_WHITELISTED_VERSIONS = {
all: '^3.0.0 || ^4.0.0 || ~5.1.0 || ~5.2.0 || >= 5.4.0',
all: '^3.0.0 || ^4.0.0 || ~5.1.0 || ~5.2.0 || >= 5.4.2',
darwin: '>= 5.4.0',
linux: '>= 5.4.0',
};
const YARN_WHITELISTED_VERSIONS = {
all: '0.23.3 || 0.24.6 || >= 1.0.0',
Expand Down

0 comments on commit 063caca

Please sign in to comment.