Remove gulp global install step from Azure pipeline (#1115)

* Remove gulp global install step

* Prefix each npm command with 'call'
This commit is contained in:
Mark Koester 2020-01-20 07:50:13 -05:00 committed by Kyle Spearrin
parent 11d34cff88
commit 972a21a685
1 changed files with 3 additions and 6 deletions

View File

@ -21,9 +21,6 @@ steps:
versionSpec: '10.x' versionSpec: '10.x'
displayName: 'Install Node.js' displayName: 'Install Node.js'
- script: npm install -g gulp
displayName: 'Global install gulp'
- powershell: | - powershell: |
choco install cloc --no-progress choco install cloc --no-progress
cloc --include-lang TypeScript,JavaScript,HTML,Sass,CSS --vcs git cloc --include-lang TypeScript,JavaScript,HTML,Sass,CSS --vcs git
@ -31,11 +28,11 @@ steps:
- script: | - script: |
node --version node --version
npm --version call npm --version
displayName: 'Version checks' displayName: 'Version checks'
- script: npm install - script: call npm install
displayName: 'npm install' displayName: 'npm install'
- script: npm run build - script: call npm run build
displayName: 'npm run build' displayName: 'npm run build'