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 2421a59 commit 68508b2Copy full SHA for 68508b2
lib/compiler/assets-manager.ts
@@ -1,4 +1,4 @@
1
-import * as chokidar from 'chokidar';
+import * as chokidar from 'chokidar';
2
import { statSync } from 'fs';
3
import { sync } from 'glob';
4
import { dirname, join, sep } from 'path';
@@ -104,7 +104,6 @@ export class AssetsManager {
104
const files = sync(item.glob, { ignore: item.exclude }).filter(
105
(matched) => statSync(matched).isFile(),
106
);
107
-
108
for (const path of files) {
109
this.actionOnFile({ ...option, path, action: 'change' });
110
}
0 commit comments