stefanpenner / broccoli-concat-analyser

MIT License
126 stars 14 forks source link

Application css is missing #27

Open danwenzel opened 6 years ago

danwenzel commented 6 years ago

When viewing the visualization, I'm noticing that the application css is completely missing - there's no area for it at all. The app js, vendor js, and vendor css are all showing up fine.

I've tried this on both a large application with lots of css, and a small add-on with just a bit.

Tested with ember-cli 2.18 and 3.0, as well as broccoli-concat-analyser 2.1.0 and 3.0.0.

Let me know what further info you need. Thanks!

danwenzel commented 6 years ago

@stefanpenner @simonihmig - Any ideas on this?

One thing to note: I use the PODS file structure. Maybe that has something to do with it?

simonihmig commented 6 years ago

We can see the same actually on the screenshot of the Readme: https://github.com/stefanpenner/broccoli-concat-analyser and the demo 😬

I guess the issue is that broccoli-concat is not even involved in creating the app.css, as there is no concatenation required. So it does not write any json stats files, so nothing shows up in the analyzer...

@stefanpenner can you confirm?

FWIW, also when you use a preprocessor like Sass, its @import directives will be handled by Sass itself, so broccoli-concat is also not involved...

danwenzel commented 6 years ago

@stefanpenner - Any thoughts here?

danwenzel commented 6 years ago

@stefanpenner - ping... any ideas?

stefanpenner commented 6 years ago

@stefanpenner can you confirm?

That might be the issue yes... For my apps, i do have a concat step for CSS, so it shows up...

Hmmmm