We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92bbe61 commit 0a70464Copy full SHA for 0a70464
packages/angular_devkit/build_angular/src/angular-cli-files/utilities/stats.ts
@@ -47,13 +47,13 @@ export function statsToString(json: any, statsConfig: any) {
47
const unchangedChunkNumber = json.chunks.length - changedChunksStats.length;
48
49
if (unchangedChunkNumber > 0) {
50
- return rs(tags.stripIndents`
+ return '\n' + rs(tags.stripIndents`
51
Date: ${w(new Date().toISOString())} - Hash: ${w(json.hash)} - Time: ${w('' + json.time)}ms
52
${unchangedChunkNumber} unchanged chunks
53
${changedChunksStats.join('\n')}
54
`);
55
} else {
56
57
Date: ${w(new Date().toISOString())}
58
Hash: ${w(json.hash)}
59
Time: ${w('' + json.time)}ms
0 commit comments