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 35c10df commit f37419fCopy full SHA for f37419f
1 file changed
packages/@angular/cli/tasks/serve.ts
@@ -215,14 +215,8 @@ export default Task.extend({
215
const server = new WebpackDevServer(webpackCompiler, webpackDevServerConfiguration);
216
if (!serveTaskOptions.verbose) {
217
webpackCompiler.plugin('done', (stats: any) => {
218
- const str = statsToString(stats.toJson(), statsConfig);
219
- if (stats.hasErrors()) {
220
- this.ui.writeError(str);
221
- } else if (stats.hasWarnings()) {
222
- this.ui.writeWarnLine(str);
223
- } else {
224
- this.ui.writeLine(str);
225
- }
+ const str = statsToString(stats.toJson('verbose'), statsConfig);
+ this.ui.writeLine(str);
226
});
227
}
228
0 commit comments