Merge pull request #374 from dsame/master

Add lerna to windows images
This commit is contained in:
Alejandro Pauly
2020-02-07 09:52:23 -05:00
committed by GitHub
2 changed files with 11 additions and 0 deletions

View File

@@ -31,3 +31,4 @@ npm install -g gulp-cli
npm install -g parcel-bundler
npm install -g --save-dev webpack webpack-cli
npm install -g yarn
npm install -g lerna

View File

@@ -26,6 +26,16 @@ else
exit 1
}
if(Get-Command -Name 'lerna')
{
Write-Host "lerna $(lerna --version) on path"
}
else
{
Write-Host "lerna is not on path"
exit 1
}
if( $(node --version) -match 'v(?<version>.*)' )