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 8f35e58 commit e927324Copy full SHA for e927324
src/cli.ts
@@ -37,6 +37,7 @@ export default async function cli() {
37
dir: path.join(process.cwd()),
38
debounce: 40,
39
filter: ({ path }: { path: string }) => {
40
+ console.log(path);
41
return path.startsWith(pkg) || path.startsWith(docs);
42
},
43
});
@@ -46,6 +47,7 @@ export default async function cli() {
46
47
// });
48
49
await pkg_watch.init();
50
+ console.log("watcher initialised");
51
// await doc_watch.init();
52
// let cons = 0;
53
pkg_watch.on("+", ({ path, stats, isNew }) => {
0 commit comments