⬆️ node@12.13.1 and ⬆️npm@6.12.1

This commit is contained in:
Darangi
2019-11-29 19:22:04 +01:00
parent ef559976dc
commit 79bc4e77af
4 changed files with 6 additions and 6 deletions

View File

@@ -31,8 +31,8 @@ jobs:
steps:
- task: NodeTool@0
inputs:
versionSpec: 10.2.1
displayName: Install Node.js 10.2.1
versionSpec: 12.13.1
displayName: Install Node.js 12.13.1
# This has to be done separately because VSTS inexplicably
# exits the script block after `npm install` completes.

View File

@@ -62,7 +62,7 @@ jobs:
BUILD_ARCH: $(buildArch)
CI: true
CI_PROVIDER: VSTS
NPM_BIN_PATH: "D:\\a\\_tool\\node\\10.2.1\\x64\\npm.cmd"
NPM_BIN_PATH: "D:\\a\\_tool\\node\\12.13.1\\x64\\npm.cmd"
displayName: Bootstrap build environment
condition: ne(variables['CacheRestored'], 'true')

View File

@@ -38,8 +38,8 @@ jobs:
steps:
- task: NodeTool@0
inputs:
versionSpec: 10.2.1
displayName: Install Node.js 10.2.1
versionSpec: 12.13.1
displayName: Install Node.js 12.13.1
# This has to be done separately because VSTS inexplicably
# exits the script block after `npm install` completes.

View File

@@ -5,7 +5,7 @@ const path = require('path');
const download = require('download');
const childProcess = require('child_process');
const nodeVersion = '10.2.1';
const nodeVersion = '12.13.1';
const nodeFileName = `node-v${nodeVersion}-win-x86`;
const extractedNodePath = `c:\\tmp\\${nodeFileName}`;