mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
972 B
39 lines
972 B
param(
|
|
[string]$Version,
|
|
[string]$User,
|
|
[string]$Pass,
|
|
[string]$Email,
|
|
[string]$Registry
|
|
)
|
|
|
|
npm install
|
|
|
|
$NextVersion = $(node get-version.js) + '-preview' + (Get-Date).tostring("yyyyMMdd")
|
|
$rootFolder = (Get-Item -Path "./" -Verbose).FullName
|
|
|
|
if(-Not $Version) {
|
|
$Version = $NextVersion;
|
|
}
|
|
|
|
if(-Not $Registry) {
|
|
$Registry = "http://localhost:4873";
|
|
}
|
|
|
|
$commands = (
|
|
"npm-cli-login -u $User -p $Pass -e $Email -r $Registry",
|
|
"cd ng-packs\scripts",
|
|
"npm install",
|
|
"npm run publish-packages -- --nextVersion $Version --preview",
|
|
"cd ../../",
|
|
"yarn lerna publish $Version --no-push --yes --no-git-reset --no-commit-hooks --no-git-tag-version --force-publish --dist-tag preview --registry $Registry"
|
|
)
|
|
|
|
foreach ($command in $commands) {
|
|
Write-Host $command
|
|
Invoke-Expression $command
|
|
if($LASTEXITCODE -ne '0' -And $command -notlike '*cd *'){
|
|
Write-Host ("Process failed! " + $command)
|
|
Set-Location $rootFolder
|
|
exit $LASTEXITCODE
|
|
}
|
|
} |