From 1b4daaa3be2530a3249e7b10309c02420deb55ab Mon Sep 17 00:00:00 2001 From: Wojciech Trocki Date: Fri, 19 Jun 2020 00:09:55 +0100 Subject: [PATCH] fix: add extra publish commands --- scripts/publishRelease.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/publishRelease.sh b/scripts/publishRelease.sh index bf6959558d..f1bbdd8cf8 100755 --- a/scripts/publishRelease.sh +++ b/scripts/publishRelease.sh @@ -18,7 +18,7 @@ if [[ "$(echo $TAG | grep -E $RELEASE_SYNTAX)" == "$TAG" ]]; then echo "publishing a new release: $TAG" lerna --no-private exec npm publish elif [[ "$(echo $TAG | grep -E $PRERELEASE_SYNTAX)" == "$TAG" ]]; then - lerna version $TAG --no-push -y + lerna version $TAG --no-push --no-push --no-git-tag-version --exact --ignore-changes -y echo "publishing a new pre release: $TAG" lerna --no-private exec "npm publish --tag next" else