lewisnyman/drupalcore-frontend-toolkit

Report CSS stats

Opened this issue · 3 comments

How many CSS files
How many lines of CSS
How many KB of CSS

How many CSS files:

find ./core/modules ./core/themes ./core/misc -name "*.css" | wc -l

How many lines of CSS:

find ./core/modules ./core/themes ./core/misc -name "*.css" -exec cat {} \; | wc -l

It would be nice to build this into the csslint report, it already reports the number of CSS files.