您好,我正在尝试用 grunt 设置一个观察者,但我得到的只是控制台中的这个。
$ grunt watchTest
运行“监视”任务
等待...$
所以没有实际的等待。我已经尝试了 jasmine 任务,它按预期工作。我错过了什么?
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']);
};