Skip to content

Commit d3bfdf9

Browse files
author
Robert Jackson
committed
Avoid **/tmp/** when looking for package.json's.
1 parent 526a869 commit d3bfdf9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
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)