Browse Source
Merge pull request #16937 from abpframework/update-version-after-release
fix update-version after-release
pull/16938/head
selman koc
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
4 deletions
-
npm/publish-ng.ps1
|
|
|
@ -17,7 +17,7 @@ if (-Not $Registry) { |
|
|
|
} |
|
|
|
$UpdateNgPacksCommand = "yarn update-version $Version" |
|
|
|
$NgPacksPublishCommand = "npm run publish-packages -- --nextVersion $Version --skipGit --registry $Registry --skipVersionValidation" |
|
|
|
#$UpdateGulpCommand = "yarn update-gulp --registry $Registry" |
|
|
|
$UpdateGulpCommand = "yarn update-gulp --registry $Registry" |
|
|
|
|
|
|
|
|
|
|
|
$IsPrerelease = $(node publish-utils.js --prerelease --customVersion $Version) -eq "true"; |
|
|
|
@ -36,9 +36,9 @@ $commands = ( |
|
|
|
$NgPacksPublishCommand, |
|
|
|
"cd ../../", |
|
|
|
"cd scripts", |
|
|
|
"yarn remove-lock-files" |
|
|
|
# "cd ..", |
|
|
|
# $UpdateGulpCommand |
|
|
|
"yarn remove-lock-files", |
|
|
|
"cd ..", |
|
|
|
$UpdateGulpCommand |
|
|
|
) |
|
|
|
|
|
|
|
foreach ($command in $commands) { |
|
|
|
|