Skip to content
This repository was archived by the owner on Jan 11, 2023. It is now read-only.

Commit bf9cbe2

Browse files
committed
print details of webpack errors - fixes #403
1 parent 4a92fbb commit bf9cbe2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/core/create_compilers/WebpackCompiler.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ export class WebpackCompiler {
2828
const result = new WebpackResult(stats);
2929

3030
if (result.errors.length) {
31-
// TODO print errors
32-
// console.error(stats.toString({ colors: true }));
31+
console.error(stats.toString({ colors: true }));
3332
reject(new Error(`Encountered errors while building app`));
3433
}
3534

0 commit comments

Comments
 (0)