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

Grunt task not found (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"]);
};

为什么我会收到找不到任务的错误消息?

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`
};