I am running sass 3.4.2 and compass 1.0.1 and compiling compass with grunt-contrib-compass.
I am importing Zurb Foundation scss files into a master stylesheet, but a few of the imports do not appear in the compiled css. After digging deeper, it seems like if there is an error in the @import file that the error is not reported.
My grunt task config code looks like this:
compass: {
dist: {
options: {
require: [],
httpPath: '/',
http_images_path: '/assets/images',
importPath: 'public_html/assets/bower_components',
cssDir: 'public_html/assets/css',
sassDir: 'public_html/assets/_src/scss',
imagesDir: 'public_html/assets/images',
javascriptsDir: 'public_html/assets/_src/js',
outputStyle: 'compressed',
noLineComments: true
}
},