目标:
我正在尝试在我的守护进程中运行一个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