Merge pull request #71 from hkc452/master

fix: 修复 watch 池为空
This commit is contained in:
qlin 2021-09-02 17:55:49 +08:00 committed by GitHub
commit 2a42a079f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,7 @@ export default async ({ api, watch }) => {
});
}
const watchers = [];
let watchers = [];
await generate();
@ -20,6 +20,7 @@ export default async ({ api, watch }) => {
watchers.forEach((watcher) => {
watcher.close();
});
watchers = [];
}
function createWatcher(path) {
@ -34,6 +35,7 @@ export default async ({ api, watch }) => {
await generate();
}, 100)
);
watchers.push(watcher);
}
if (watch) {