ゴール:
デーモンとしてwatch
タスクを実行しようとしています。Gruntfile.js
通常、このスクリプトを次のように実行しますgrunt watch
。
Gruntfile.js:
module.exports = function(grunt) {
grunt.initConfig({
concat: {
options: {
separator: ''
},
dist: {
src: ['static/js/**/*.js'],
dest: 'app.js'
}
},
watch: {
files: ['<%= concat.dist.src %>'],
tasks: ['concat']
}
});
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-concat');
};
質問:
デーモンとしてスポーンするにはどうすればよいですか?grunt watch
アップデート:
これに関する考慮事項はすでに行われているようです:
https://github.com/shama/grunt-hub#watching-forever
https://github.com/shama/grunt-hub/issues/3