adopt webpack stream changes

This commit is contained in:
Johannes Rieken
2021-07-02 16:34:51 +02:00
parent 99bac2dac6
commit 6b5129650b
2 changed files with 4 additions and 4 deletions

View File

@@ -390,7 +390,7 @@ async function webpackExtensions(taskName, isWatch, webpackConfigLocations) {
reject();
}
else {
reporter(stats.toJson());
reporter(stats === null || stats === void 0 ? void 0 : stats.toJson());
}
});
}
@@ -401,7 +401,7 @@ async function webpackExtensions(taskName, isWatch, webpackConfigLocations) {
reject();
}
else {
reporter(stats.toJson());
reporter(stats === null || stats === void 0 ? void 0 : stats.toJson());
resolve();
}
});