I'm trying to setup my config file that if it is compiling a file like filename.scss it will compile as :expanded. However, if the file name contains *.min.scss then I want to compress as :compressed.
Something like:
output_style = (File.basename(filename) == "*.min.scss") ? :compressed : :expanded
Alternatively, if I can output filename.scss as both filename.css and filename.min.css without having to force it in the command line.
