0
我想從我的grunt-contrib-compass作業中指定CSS文件的輸出名稱。默認輸出和index.css文件。css文件的輸出特定文件名grunt-contrib-compass
實際結果 <%= yeoman.app%>/specialdir /主題/ index.css
所需的結果 <%= yeoman.app%>/specialdir /主題/我的主題的.css
Gruntfile.js
....
compass : {
// specialjob here
specialjob : {
options : {
sassDir : '<%= yeoman.app %>/specialdir/my-theme',
cssDir : '<%= yeoman.app %>/specialdir/themes', // should output into this folder
relativeAssets : false,
assetCacheBuster : false,
raw : 'Sass::Script::Number.precision = 10\n'
},
dist : {
options : {
generatedImagesDir : '<%= yeoman.app %>/specialdir/images/generated'
}
},
server : {
options : {
sourcemap : true
}
}
},
任何想法?
哈,就是這樣!可笑簡單 –