Skip to content

Commit

Permalink
Merge pull request #374 from dsame/master
Browse files Browse the repository at this point in the history
Add lerna to windows images
  • Loading branch information
alepauly authored Feb 7, 2020
2 parents b3d740a + f26dcc9 commit 34dc9ab
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions images/win/scripts/Installers/Install-NodeLts.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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
10 changes: 10 additions & 0 deletions images/win/scripts/Installers/Validate-NodeLts.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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>.*)' )
Expand Down

0 comments on commit 34dc9ab

Please sign in to comment.