找不到Grunt任务(grunt-contrib-sass)

时间:2017-10-15 19:17:53

标签: javascript node.js gruntjs grunt-contrib-sass

这是我的gruntfile.js,它与sass/style.scsspackage.json位于同一目录中。 package.json已安装gruntgrunt-contrib-sassgrunt-cli

module.exports = function(grunt) {
  grunt.initConfig({
    pkg: grunt.file.readJSON('package.json'),
    // this is where you set up your Sass settings. Once you know what you're doing, you can change thse.
    Sass: {
      dist: {
        options: {
          style: 'compressed'
        },
        files: {
          'style.css': 'sass/style.scss'
        }
      }
    }
  });
  grunt.loadNpmTasks('grunt-contrib-sass');
  grunt.registerTask('default', ["Sass"]);
};

为什么我收到任务未找到错误的任何想法?

1 个答案:

答案 0 :(得分:1)

Saas更改为saas,如example配置中所示。

注意:任务名称的正确拼写以小写字母(s)开头。

<强> Gruntfile.js

module.exports = function(grunt) {
  grunt.initConfig({
    pkg: grunt.file.readJSON('package.json'),
    sass: { // <-- Change to lowercase `s`
      dist: {
        options: {
          style: 'compressed'
        },
        files: {
          'style.css': 'sass/style.scss'
        }
      }
    }
  });
  grunt.loadNpmTasks('grunt-contrib-sass');
  grunt.registerTask('default', ["sass"]);  // <-- Change to lowercase `s`
};