1

我刚开始使用 Grunt,我可能已经遇到了问题。所以,这就是我的Gruntfile.js样子:

module.exports = function (grunt) {
  grunt.initConfig({

    // Ability to access the package.json informations
    pkg: grunt.file.readJSON('package.json'),

    // SASS compilation
    sass: {
      dist: {
        options: {
          style: 'compressed'
        },
        expand: true,
        cwd: './sass/',
        src: 'main.scss',
        dest: './css/',
        ext: '.css'
      },
      dev: {
        options: {
          style: 'expanded',
          debugInfo: true,
          lineNumbers: true
        },
        expand: true,
        cwd: './sass/',
        src: 'main.scss',
        dest: './css/',
        ext: '.css'
      }
    }

  });
};

当我跑的时候grunt sass:dev,它总会回来Warning: Task "sass:dev" not found. Use --force to continue.

当我开始使用它时,我查看了文档并且找不到我可能出错的地方......是的,依赖项已正确安装。

4

1 回答 1

5

您需要确保在 initConfig 部分之后注册了任务。

module.exports = function (grunt) {
  grunt.initConfig({
    // ...
  });
  grunt.loadNpmTasks('grunt-contrib-sass');
};
于 2013-10-25T22:00:35.157 回答