I need help specifying the output name of the CSS file in my grunt-contrib-compass task. Currently, it outputs as index.css.
Current Output <%= yeoman.app %>/specialdir/themes/index.css
Desired Output <%= yeoman.app %>/specialdir/themes/my-theme.css
Gruntfile.js
....
compass : {
// specialjob here
specialjob : {
options : {
sassDir : '<%= yeoman.app %>/specialdir/my-theme',
cssDir : '<%= yeoman.app %>/specialdir/themes', // target folder for output
relativeAssets : false,
assetCacheBuster : false,
raw : 'Sass::Script::Number.precision = 10\n'
},
dist : {
options : {
generatedImagesDir : '<%= yeoman.app %>/specialdir/images/generated'
}
},
server : {
options : {
sourcemap : true
}
}
},
Any suggestions on how to achieve this?