We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b43a9c commit 99e1b5aCopy full SHA for 99e1b5a
packages/@angular/cli/utilities/stats.ts
@@ -35,13 +35,12 @@ export function statsToString(json: any, statsConfig: any) {
35
const size = asset ? ` ${_formatSize(asset.size)}` : '';
36
const files = chunk.files.join(', ');
37
const names = chunk.names ? ` (${chunk.names.join(', ')})` : '';
38
- const parents = chunk.parents.map((id: string) => ` {${y(id)}}`).join('');
39
const initial = y(chunk.entry ? '[entry]' : chunk.initial ? '[initial]' : '');
40
const flags = ['rendered', 'recorded']
41
.map(f => f && chunk[f] ? g(` [${f}]`) : '')
42
.join('');
43
44
- return `chunk {${y(chunk.id)}} ${g(files)}${names}${size}${parents} ${initial}${flags}`;
+ return `chunk {${y(chunk.id)}} ${g(files)}${names}${size} ${initial}${flags}`;
45
}).join('\n')}
46
`);
47
}
0 commit comments