chore: skip publishing node_modules folder

This commit is contained in:
Daniel Roe 2023-05-15 13:29:59 +01:00
parent 7fab952528
commit 8799cfacc9
1 changed files with 3 additions and 0 deletions

View File

@ -3,6 +3,9 @@ set -e
for dir in packages/* distributions/* ; do
# echo "$dir"
if [[ $dir == *"node_modules"* ]]; then
continue
fi
pushd $dir > /dev/null
$@
popd > /dev/null