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.
35 lines
818 B
35 lines
818 B
param(
|
|
[string]$Version
|
|
)
|
|
|
|
npm install
|
|
|
|
$NextVersion = $(node get-version.js)
|
|
$rootFolder = (Get-Item -Path "./" -Verbose).FullName
|
|
|
|
if(-Not $Version) {
|
|
$Version = $NextVersion;
|
|
}
|
|
|
|
$commands = (
|
|
"cd ng-packs\scripts",
|
|
"npm install",
|
|
"npm run publish-packages -- --nextVersion $Version",
|
|
"cd ../../",
|
|
"yarn lerna version $Version --yes --no-commit-hooks --skip-git --force-publish",
|
|
"yarn replace-with-tilde",
|
|
"yarn lerna exec 'npm publish --registry https://registry.npmjs.org'",
|
|
"yarn update:templates",
|
|
"yarn gulp:app",
|
|
"yarn gulp:module"
|
|
)
|
|
|
|
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
|
|
}
|
|
} |