We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a69558 commit 342c3f8Copy full SHA for 342c3f8
dist/cli.js
@@ -25038,7 +25038,9 @@ async function cli() {
25038
dir: path.join(process.cwd()),
25039
debounce: 40,
25040
filter: ({ path }) => {
25041
+ if (/.*\/node_modules\/.*/.test(path)) return false;
25042
console.log(path);
25043
+
25044
return path.startsWith(pkg) || path.startsWith(docs);
25045
},
25046
});
src/cli.ts
@@ -37,7 +37,9 @@ export default async function cli() {
37
38
39
filter: ({ path }: { path: string }) => {
40
41
42
43
44
45
0 commit comments