Compass / compass

Compass is no longer actively maintained. Compass is a Stylesheet Authoring Environment that makes your website design simpler to implement and easier to maintain.
http://compass-style.org
Other
6.73k stars 1.18k forks source link

Compass does not provide a way to pass configuration to Sass #338

Closed jjl closed 13 years ago

jjl commented 13 years ago

...or if it does, I can't seem to find where it permits it in the documentation.

My main request is to be able to select an output style, so that i can use compass to do the building for deployment by using the compressed output while using the expanded style during dev.

Relevant sass doc: http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#output_style

chriseppstein commented 13 years ago

you can specify the output style on the command line (compass compile -h), using the output_style config option, or by passing it to the sass options directly like this in your config:

sass_options = {:style => :compressed}