simonihmig / ember-cli-bundle-analyzer

Analyze the size and contents of your Ember app's bundles
MIT License
99 stars 2 forks source link

Concat stats path should be set lazily #10

Closed simonihmig closed 1 year ago

simonihmig commented 5 years ago

It is set during init(), which causes a manual run of CONCAT_STATS=true ember b to write the stats files into a temp folder, which the user is not aware of. It should do this only when the _analyze middleware is actually used.

simonihmig commented 5 years ago

Currently not possible to fix, as broccoli-concat needs this to be set at instantiation time: https://github.com/broccolijs/broccoli-concat/blob/master/concat.js#L66

simonihmig commented 1 year ago

Obsolete, due to #26