Skip to content

Commit

Permalink
chore: skip publishing node_modules folder
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed May 15, 2023
1 parent 7fab952 commit 8799cfa
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/workspace-run
Expand Up @@ -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
Expand Down

0 comments on commit 8799cfa

Please sign in to comment.