We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42b73f6 commit 3dc8c38Copy full SHA for 3dc8c38
1 file changed
scripts/npm-publish.sh
@@ -36,7 +36,7 @@ fi
36
while IFS= read -r f; do
37
tmp="$(mktemp)"
38
jq --arg v "$VERSION" '.version = $v' "$f" > "$tmp" && mv "$tmp" "$f" || { rm -f "$tmp"; exit 1; }
39
-done < <(find npm -name package.json)
+done < <(find npm -name package.json ! -path '*/node_modules/*')
40
41
# Also update the optionalDependencies version references in the wrapper
42
0 commit comments