From 6fcfa9e2330a67efd8788ac92a0ba0298d18ce6a Mon Sep 17 00:00:00 2001 From: Mahmut Gundogdu Date: Thu, 22 Jun 2023 13:57:09 +0300 Subject: [PATCH] fix update-version after-release --- npm/publish-ng.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/npm/publish-ng.ps1 b/npm/publish-ng.ps1 index aa506b1e55..9ba831f635 100644 --- a/npm/publish-ng.ps1 +++ b/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) {