Minify some files, combine all, with Grunt.JS
I'm moving a dev team away from Chirpy, an add-in for visual studio, for combination & minification of CSS/JS files, over to grunt as part of a workflow automation process. In chirpy, the config looks something like this (truncated for brevity): <FileGroup Name="scripts.combined.js" Minify="both"> <File Path="forms.js" Minify="false" /> <File Path="cookie_monster.js" Minify="true" /> ... </FileGroup> So in this abridged case, I have 2 files. One needs to be minified, the other doesn't. (according to the folks here, minifying forms.js breaks functionality, and I haven't been allocated time to