We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cce74e commit 55f4f7eCopy full SHA for 55f4f7e
2 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "pri",
3
- "version": "0.10.7",
+ "version": "0.10.8",
4
"types": "src/node/index.ts",
5
"main": "built/node/index.js",
6
"scripts": {
src/utils/walk-project-files.ts
@@ -30,6 +30,11 @@ export function walkProjectFiles(): Promise<ICustomParsedPath[]> {
30
return;
31
}
32
33
+ if (gitIgnores.concat(scanIgnores).some(ignorePath => ignorePath === path.join(root, dirStats.name))) {
34
+ next();
35
+ return;
36
+ }
37
+
38
files.push({ isDir: true, ...path.parse(dirPath) });
39
next();
40
});
0 commit comments