marcorinck / ngStart

skeleton project for new angular.js projects
MIT License
195 stars 29 forks source link

no hardcoded css file list #6

Closed marcorinck closed 9 years ago

marcorinck commented 11 years ago

Currently all css files used by the project need to be added manually in gruntfile.js to the cssmin.css task configuration in the correct order.

Make that more practical, at least as a config in package.json. Maybe there could be another even more automatic solution (order of css files is important!)

BarrySkidmore commented 10 years ago

Might I suggest that you use LESS to compile all .less files (using expand true mapping) into a single main CSS file, then cssmin that single file in the build process.

marcorinck commented 9 years ago

included LESS compiler as suggested