Description
Versions
all
REPRO
- create more than 50 - 100 lazyload module
- run using
ng serve
- You will have many number of lines in your console see example: https://gist.github.com/istiti/6b73e021896021048f6f1f9b372da5f9
Observed behavior
I think this is a very ergonomics problem to see so many output in console which have scroll:
And in many IDE your console takes often 25% of the height
In fact problem will come when you have an error which not break your "ng serve" and you edit many times a file , the cli rebuild many times and you have sometimes error at the begining of you console, you can't see it quickly, you need scroll the console to read it just because of numberous lines chunk {name.module} name.module.chunk.js () 58.7 kB [rendered]
Desired behavior
I think CLI should NOT show these NOT important informations (on big project with many lazy module) because your console isn't clean and not ergonomics, not easy to use, to see if error happends.
I think these lazymodule chunk should still be here only with --verbose
flag.
And if you run ng s
just output the minimum informations maxmimum of 7 or 10 lines and maybe regroup lazymodule in one lines, something like :
RESULT SHOULD BE
What you think ?