8

我是 gruntjs 的新手,这是我的简单 gruntfile:

/* global module:false */
module.exports = function(grunt) {

  // Project configuration.
  grunt.initConfig({
    watch: {
      tasks: 'coffee'
    },
    coffee: {
      compile: {
        files: {
          'js/javascript/*.js': ['js/coffeescript/*.coffee'] // 1:1 compile
        }
      }
    }
  });

  grunt.loadNpmTasks('grunt-contrib-coffee');

  // Default task.
  grunt.registerTask('default', 'coffee');
};

当我运行 grunt 时,它编译得很好。但是,当我运行 grunt watch 时,它只是在等待并没有检测到我的更改。

4

1 回答 1

12

您应该添加要观看的文件:

watch: {
  coffee: {
    files: ['js/coffeescript/*.coffee'],
    tasks: 'coffee'
  }
}

例子

于 2012-10-10T09:13:48.113 回答