I am using grunt compass and I want only to compile a single scss file src/scss/image_slider.scss
instead of all the files under scss folder.
Below written code works fine for full scss foler.
compass: {
dist: {
options: {
sassDir: 'src/scss',
cssDir: 'src/css',
}
}
},
It worked in below format:
compass: {
dist: {
options: {
sassDir: 'src/scss',
specify: 'src/scss/my_file.scss',
cssDir: 'src/css',
}
}
},