chore: reenable publishing 🙈

This commit is contained in:
Daniel Roe 2023-03-17 15:39:50 +00:00
parent 6ca842e36e
commit 4ce8b118ef
1 changed files with 2 additions and 2 deletions

View File

@ -13,9 +13,9 @@ for dir in packages/* distributions/* ; do
pushd $dir > /dev/null
# if package is nuxt then publish with tag 2x
if [ "$dir" = "distributions/nuxt" ]; then
echo npm publish --tag 2x -q
npm publish --tag 2x -q
else
echo npm publish -q
npm publish -q
fi
popd > /dev/null
done