File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -25011,11 +25011,11 @@ send.bind(null, 'PATCH');
25011
25011
send.bind(null, 'DELETE');
25012
25012
send.bind(null, 'PUT');
25013
25013
25014
- console.log(`Starting docs preview server.\n`);
25015
-
25016
25014
const cache = {};
25017
25015
25018
25016
async function cli() {
25017
+ console.log(`Starting docs preview server.\n`);
25018
+
25019
25019
const {
25020
25020
pkg = "packages",
25021
25021
docs = "documentation",
@@ -25038,6 +25038,7 @@ async function cli() {
25038
25038
dir: path.join(process.cwd()),
25039
25039
debounce: 40,
25040
25040
filter: ({ path }) => {
25041
+ console.log(path);
25041
25042
return path.startsWith(pkg) || path.startsWith(docs);
25042
25043
},
25043
25044
});
@@ -25047,6 +25048,7 @@ async function cli() {
25047
25048
// });
25048
25049
25049
25050
await pkg_watch.init();
25051
+ console.log("watcher initialised");
25050
25052
// await doc_watch.init();
25051
25053
// let cons = 0;
25052
25054
pkg_watch.on("+", ({ path, stats, isNew }) => {
You can’t perform that action at this time.
0 commit comments