From 98586bcf251dbf18f3b9e672b6583f6f552a9026 Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Wed, 20 Apr 2022 14:48:58 +0200 Subject: [PATCH] build(scripts): update release-rc spoiler: releasing `3.0.0-rc.0` to ensure everything goes well :p --- scripts/release-rc.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/release-rc.sh b/scripts/release-rc.sh index b776cd34f9..2d483ad9d6 100755 --- a/scripts/release-rc.sh +++ b/scripts/release-rc.sh @@ -8,6 +8,9 @@ git restore -s@ -SW -- packages examples # Bump versions yarn lerna version --preid rc --no-changelog --no-push -m "chore: release rc" +# Build all once to ensure things are nice +yarn build + # Release packages for PKG in packages/* ; do pushd $PKG @@ -16,6 +19,6 @@ for PKG in packages/* ; do TAG="rc" fi echo "⚡ Publishing $PKG with tag $TAG" - echo yarn npm publish --tag $TAG --access public --tolerate-republish + npm publish --tag $TAG --access public --tolerate-republish popd > /dev/null done