fix: app-css-loader to look for platform specific app s?css files too

This commit is contained in:
Igor Randjelovic
2021-03-30 14:34:30 +02:00
parent 0999d6fe3e
commit f7530fe4e1
10 changed files with 73 additions and 19 deletions

View File

@@ -27,13 +27,13 @@ export class WatchStatePlugin {
if (env.verbose) {
if (compiler.modifiedFiles) {
Array.from(compiler.modifiedFiles).forEach((file) => {
console.log(`MODIFIED: ${file}`);
console.log(`[${id}][WatchTriggers] MODIFIED: ${file}`);
});
}
if (compiler.removedFiles) {
Array.from(compiler.removedFiles).forEach((file) => {
console.log(`REMOVED: ${file}`);
console.log(`[${id}][WatchTriggers] REMOVED: ${file}`);
});
}
}