diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/publish.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/publish.sh b/scripts/publish.sh index bbd5238..d354b39 100755 --- a/scripts/publish.sh +++ b/scripts/publish.sh @@ -15,7 +15,7 @@ echo " 5. Push" echo "" read -p "Version: " version -read -p "NPM Tag [$defaultTag]:" tag +read -p "NPM Tag (latest or pre) [$defaultTag]:" tag tag=${tag:-$defaultTag} echo "" @@ -23,4 +23,4 @@ echo "You are going to publish version ${version} on NPM (tagged as ${tag})" echo "Press [ENTER] tp confirm" read -lerna publish --skip-git --repo-version $[version] --npm-tag ${tag} --force-publish=* +lerna publish --skip-git --repo-version ${version} --npm-tag ${tag} --force-publish=* |