I've using SASS and generating a debug version of the style sheet for use with Firebug/FireSASS.
If I then try to minify my outputted .css file it includes all the SASS debug info. Is it possible to get SASS create both a debug version and a compressed version at the same time?
I current use:
scss --no-cache --update --debug-info file.sass:file.css
This output then gets pushed to YUI Compressor CSS which is minifying the debug code.