From 4733a32c0825cd75742959ebcef7dc93b03f1b50 Mon Sep 17 00:00:00 2001 From: Nate Fischer Date: Wed, 9 May 2018 17:02:37 -0700 Subject: [PATCH] chore(appveyor): do not use latest npm (#847) This changes appveyor from using the latest npm version to only using the preinstalled npm version. This is safer, because it's guaranteed to be a compatible version. Fixes #844 --- appveyor.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 3c795280..f66b8174 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -12,7 +12,6 @@ version: '{build}' # Install scripts. (runs after repo cloning) install: - ps: Install-Product node $env:nodejs_version - - npm -g install npm@latest - set PATH=%APPDATA%\npm;%PATH% - node --version - npm --version