add lerna version (#2914)

This commit is contained in:
Aleksandr Chebotov
2021-03-15 21:05:15 +03:00
committed by GitHub
parent 671348b620
commit 758e6ef267
2 changed files with 17 additions and 6 deletions

View File

@@ -84,6 +84,11 @@ function Get-JuliaVersion {
return "Julia $juliaVersion"
}
function Get-LernaVersion {
$version = lerna -v
return "Lerna $version"
}
function Get-HomebrewVersion {
$result = Get-CommandResult "brew -v"
$result.Output -match "Homebrew (?<version>\d+\.\d+\.\d+)" | Out-Null