Watcher不在Grunt工作

时间:2013-10-02 11:51:12

标签: jasmine gruntjs grunt-contrib-watch

您好我正在尝试使用grunt设置一个观察者,但我得到的只是在控制台中。

  

$ grunt watchTest

     

运行“观察”任务

     

等待... $

所以没有实际的等待。我已经尝试过茉莉花任务,它按预期工作。我错过了什么?

module.exports = function(grunt) {

  // Project configuration.
  grunt.initConfig({
    pkg: grunt.file.readJSON('package.json'),
    uglify: {
      options: {
        banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> */\n'
      },
      build: {
        src: 'src/main.js',
        dest: 'build/<%= pkg.name %>.min.js'
      }
    },

    jasmine : {
      src : 'src/**/*.js',
      options : {
        specs : 'src/test/specs/**/*.js'
      }
    }, 

    watch: {
      src : 'src/**/*.js',
      tasks: ['jasmine']
    }

  });


  // Load the plugin that provides the "uglify" task.
  grunt.loadNpmTasks('grunt-contrib-uglify');
  grunt.loadNpmTasks('grunt-contrib-jasmine');
  grunt.loadNpmTasks('grunt-contrib-watch');

  // Default task(s).
  grunt.registerTask('default', ['uglify']);
  grunt.registerTask('test', ['jasmine']);
  grunt.registerTask('watchTest', ['watch']);

};

1 个答案:

答案 0 :(得分:1)

您的手表配置不正确;用这个替换它:

watch: {
    jasmine: {
        files: ['src/**/*.js'],
        tasks: ['jasmine']
    }
}

另外,您不需要将任务注册为别名,只需观察自己;运行grunt watch将获得相同的结果。希望这会有所帮助。