Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.