From fec554fc2bb2dfd71a723c55d1fab10fd7fa6fd1 Mon Sep 17 00:00:00 2001 From: Elad Ben-Israel Date: Tue, 22 Oct 2019 10:46:09 +0300 Subject: [PATCH] chore(bump): no need to confirm version bump (#4620) add --yes to "lerna version" so that bump will be completely touchless. another small step towards auto-bump. --- bump.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bump.sh b/bump.sh index 549bd91cbefa1..1a2d6a7fdf72e 100755 --- a/bump.sh +++ b/bump.sh @@ -21,7 +21,7 @@ export NODE_OPTIONS="--max-old-space-size=4096 ${NODE_OPTIONS:-}" /bin/bash ./install.sh -npx lerna version ${version} --exact --force-publish=* --no-git-tag-version --no-push +npx lerna version ${version} --yes --exact --force-publish=* --no-git-tag-version --no-push # Another round of install to fix package-lock.jsons /bin/bash ./install.sh @@ -31,4 +31,4 @@ npx lerna version ${version} --exact --force-publish=* --no-git-tag-version --no /bin/bash scripts/fix-peer-deps.sh # Generate CHANGELOG and create a commit -npx standard-version --release --skip.tag=true --commit-all \ No newline at end of file +npx standard-version --release --skip.tag=true --commit-all