Grunt Sass对CSS没有建立

时间:2016-12-27 21:28:13

标签: javascript

目前我有app/styles/main.scss,我的sass被分解为多个结构化文件并导入main.scss。在我的index.html中,我有以下内容:

<!-- build:css styles/main.css -->
<link rel="stylesheet" href="styles/main.css">
<!-- endbuild -->

我正在使用我在Gruntfile.js中看到的grunt-contrib-sass指南针,现在我想另外编译一个app/styles/modules/_infowindow.scss

的文件

我尝试了以下内容:

sass: {
  dist: {
    files: [{
      expand: true,
      cwd: '<%= yeoman.app %>/styles/modules',
      src: ['_infowindow.scss'],
      dest: '.tmp/cdn/'
    }]
  }
},

终端输出:

Running "sass:dist" (sass) task
Verifying property sass.dist exists in config...OK
Files: app/styles/modules/_infowindow.scss -> .tmp/cdn/_infowindow.css
Options: (none)

但是当我检查.tmp的目录时,cdn没有目录。

附加:

这是我目前的指南针设置;

// Compiles Sass to CSS and generates necessary files if requested
compass: {
  options: {
    sassDir: '<%= yeoman.app %>/styles',
    cssDir: '.tmp/styles',
    generatedImagesDir: '.tmp/images/generated',
    imagesDir: '<%= yeoman.app %>/images',
    javascriptsDir: '<%= yeoman.app %>/scripts',
    fontsDir: '<%= yeoman.app %>/fonts',
    importPath: './bower_components',
    httpImagesPath: '/images',
    httpGeneratedImagesPath: '/images/generated',
    httpFontsPath: '/fonts',
    relativeAssets: false,
    assetCacheBuster: false,
    raw: 'Sass::Script::Number.precision = 10\n'
  },
  dist: {
    options: {
      generatedImagesDir: '<%= yeoman.dist %>/images/generated'
    }
  },
  server: {
    options: {
      sourcemap: true
    }
  }
}

1 个答案:

答案 0 :(得分:0)

您应该重命名该文件,使其不使用下划线,因此不再是部分文件,并在grunt任务中使用不带下划线的新名称。