Skip to content

Commit 8799cfa

Browse files
committedMay 15, 2023
chore: skip publishing node_modules folder
1 parent 7fab952 commit 8799cfa

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎scripts/workspace-run

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ set -e
33

44
for dir in packages/* distributions/* ; do
55
# echo "$dir"
6+
if [[ $dir == *"node_modules"* ]]; then
7+
continue
8+
fi
69
pushd $dir > /dev/null
710
$@
811
popd > /dev/null

0 commit comments

Comments
 (0)
Please sign in to comment.