@biffo/cli 0.172.1 → 0.172.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -113,10 +113,16 @@ js_dirs() {
|
|
|
113
113
|
echo "."
|
|
114
114
|
return
|
|
115
115
|
fi
|
|
116
|
+
# `.terraform/` is a DOWNLOAD CACHE of third-party modules, and the two runner
|
|
117
|
+
# repos carry eight vendored lambda packages in it -- each declaring lint and
|
|
118
|
+
# test scripts. Linting someone else's vendored code is slow, always red, and
|
|
119
|
+
# not this repo's business. It is gitignored, so a fresh worktree never has
|
|
120
|
+
# it and the omission was invisible until a primary checkout was audited.
|
|
116
121
|
find . -name package.json \
|
|
117
122
|
-not -path "*/node_modules/*" -not -path "*/dist/*" -not -path "*/.next/*" \
|
|
118
123
|
-not -path "*/.turbo/*" -not -path "*/.worktrees/*" -not -path "*/out/*" \
|
|
119
|
-
-not -path "*/coverage/*" -not -path "*/.venv/*"
|
|
124
|
+
-not -path "*/coverage/*" -not -path "*/.venv/*" \
|
|
125
|
+
-not -path "*/.terraform/*" -not -path "*/vendor/*" 2>/dev/null |
|
|
120
126
|
sed 's|/package.json$||' | sort
|
|
121
127
|
}
|
|
122
128
|
|
|
@@ -113,10 +113,16 @@ js_dirs() {
|
|
|
113
113
|
echo "."
|
|
114
114
|
return
|
|
115
115
|
fi
|
|
116
|
+
# `.terraform/` is a DOWNLOAD CACHE of third-party modules, and the two runner
|
|
117
|
+
# repos carry eight vendored lambda packages in it -- each declaring lint and
|
|
118
|
+
# test scripts. Linting someone else's vendored code is slow, always red, and
|
|
119
|
+
# not this repo's business. It is gitignored, so a fresh worktree never has
|
|
120
|
+
# it and the omission was invisible until a primary checkout was audited.
|
|
116
121
|
find . -name package.json \
|
|
117
122
|
-not -path "*/node_modules/*" -not -path "*/dist/*" -not -path "*/.next/*" \
|
|
118
123
|
-not -path "*/.turbo/*" -not -path "*/.worktrees/*" -not -path "*/out/*" \
|
|
119
|
-
-not -path "*/coverage/*" -not -path "*/.venv/*"
|
|
124
|
+
-not -path "*/coverage/*" -not -path "*/.venv/*" \
|
|
125
|
+
-not -path "*/.terraform/*" -not -path "*/vendor/*" 2>/dev/null |
|
|
120
126
|
sed 's|/package.json$||' | sort
|
|
121
127
|
}
|
|
122
128
|
|