こんにちは、うなり声でウォッチャーを設定しようとしていますが、コンソールにこれしかありません。
$ 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']);
};