を働いていないウォッチ:うなり声は、(これは私が得たものである)私はNode.jsの中でうなり声によって時計のタスクを実行しようとしたが、それは私のために動作しません
$ grunt watch
warning: Maximum call stack size exceeded Use --force to continue.
これは時計の一部でありますGruntfile.jsのタスク:
watch: {
less: {
files: 'src/less/*.less',
tasks: ['clean', 'recess', 'copy']
},
js: {
files: 'src/js/*.js',
tasks: ['clean', 'jshint', 'concat', 'uglify', 'copy']
},
theme: {
files: 'src/theme/**',
tasks: ['clean', 'recess', 'copy']
},
images: {
files: 'src/images/*',
tasks: ['clean', 'recess', 'copy']
}
}
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.registerTask('watch', ['watch']);
私はこれが役立つと思うhttp://stackoverflow.com/questions/17033246/grunt-uglifym-call-stack-size-exceeded –