From 4a7170bae9454508f58bb21454dfca91e7e3436c Mon Sep 17 00:00:00 2001 From: Mathieu M-Gosselin Date: Sun, 28 Jun 2015 13:00:16 -0400 Subject: [PATCH] Lock in npm at 2.11 until 2.12.1 is released Otherwise the AppVeyor build fails in all PRs. See: https://github.com/npm/npm/releases/tag/v2.12.1 I thought it would have been "released" much quicker than that... We only have to revert this PR once it's released. --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index cac1fa5920..430ba4a1af 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -4,7 +4,7 @@ version: '{build}' install: # Get the latest stable version of io.js - ps: Install-Product node '' - - npm -g install npm@latest + - npm -g install npm@2.11.x - set PATH=%APPDATA%\npm;%PATH% - node --version - npm --version