From bc1453e3198faa53dd6b02a23b1d3b3911d6b467 Mon Sep 17 00:00:00 2001 From: johnjbarton Date: Mon, 30 Apr 2018 08:34:56 -0700 Subject: [PATCH] fix(build): pin npm version in appveyor to v3, compat with node 4 (#2983) --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 150f49eb8..40cf08a0d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -13,8 +13,8 @@ install: # Install Node.js - ps: Install-Product node $env:nodejs_version - # Upgrade npm - - npm install -g npm + # Install npm compat with node 4 + - npm install -g npm@3 # Output our current versions for debugging - node --version