I am using Sass 3.1.10 with Compass 0.11.5. I need to compile my compass project to many different places (css_dir) due to some structural reasons. I am currently collecting all the files for each path manually. Is there a way to compile in many places at the same time?
my config.rb looks like this:
http_path = "/"
css_dir = "skin/main/css"
sass_dir = "sass"
images_dir = "images"
javascripts_dir = "javascripts"
output_style = :compressed
preferred_syntax = :sass
source
share