From f6c31b1aaf26d1429f4f0afe55067070ccb8a031 Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Thu, 11 Aug 2022 14:41:10 +0200 Subject: [PATCH] build: bump npm version for release scripts --- scripts/release-edge.sh | 2 +- scripts/release-rc.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/release-edge.sh b/scripts/release-edge.sh index 9a348beb8b..b91e2eb115 100755 --- a/scripts/release-edge.sh +++ b/scripts/release-edge.sh @@ -24,6 +24,6 @@ fi for p in packages/* ; do pushd $p echo "Publishing $p" - npx npm@8.10.0 publish --access public --tolerate-republish + npx npm@8.17.0 publish --access public --tolerate-republish popd done diff --git a/scripts/release-rc.sh b/scripts/release-rc.sh index c2dffdbd19..0fd16ce9b8 100755 --- a/scripts/release-rc.sh +++ b/scripts/release-rc.sh @@ -16,6 +16,6 @@ for PKG in packages/* ; do TAG="rc" fi echo "⚡ Publishing $PKG with tag $TAG" - npx npm@8.10.0 publish --tag $TAG --access public --tolerate-republish + npx npm@8.17.0 publish --tag $TAG --access public --tolerate-republish popd > /dev/null done