0

我正在尝试从我的 grunt-contrib-compass 作业中指定 CSS 文件的输出名称。默认输出和 index.css 文件。

实际结果 <%= yeoman.app %>/specialdir/themes/index.css

期望的结果 <%= 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', // 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
      }
    }
  },

有任何想法吗?

4

1 回答 1

1

您需要将源文件重命名my-theme.scssmy-theme.css. 查看源代码似乎这是默认行为。

快乐编码!

于 2017-10-05T20:56:47.253 回答