找不到咕噜咕噜的任务(咕噜咕噜咕噜)



这是我的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,如示例配置所示。

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

咕噜

咕噜.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`
};

相关内容

  • 没有找到相关文章

最新更新