From 32faf3d3ef33e9686223f67c40fb6e894eaedc2e Mon Sep 17 00:00:00 2001 From: trechriron Date: Mon, 10 Feb 2025 13:42:22 -0800 Subject: [PATCH] Added script for easy publish of packages to set scope public --- scripts/release-package-public.bash | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 scripts/release-package-public.bash diff --git a/scripts/release-package-public.bash b/scripts/release-package-public.bash new file mode 100644 index 000000000..6bd16a1e8 --- /dev/null +++ b/scripts/release-package-public.bash @@ -0,0 +1,5 @@ +OTP=112233 +TAG=latest + +npm publish dist/packages/hot-wallet --tag "${TAG}" --otp "${OTP}" --access public +npm publish dist/packages/react-hook --tag "${TAG}" --otp "${OTP}" --access public