Is there a way to generally NOT minify js files but DO minify a single concatenated version?
Basically here's the issue: Large project with 100's of files. During development we don't serve up minified js files as they don't add any benefit and just slow us down having to 'compile' a file every time you make a change. However in production we concatenate the core framework files into a single minified and source mapped file.
Currently we do this using a 'Bundle' via WebEssentials in VisualStudio, the bundle is just an xml file listing the files to concat with attributes saying whether we want it minified and whether we want a source map generated. We also do the same thing with css files. Both are output into a 'release' folder.