Skip to content

Commit 5148190

Browse files
author
Robert Jackson
authored
Avoid **/tmp/** when looking for package.json's. (#140)
Avoid `**/tmp/**` when looking for `package.json`'s.
2 parents 526a869 + d3bfdf9 commit 5148190

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: transforms/helpers/util/get-telemetry-for.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const APP_PATHS = {};
99

1010
let packagePaths = walkSync('./', {
1111
globs: ['**/package.json'],
12-
ignore: ['node_modules/**'],
12+
ignore: ['**/tmp/**', '**/node_modules/**'],
1313
});
1414

1515
for (let packagePath of packagePaths) {

0 commit comments

Comments
 (0)