所以,我有下面的 grunt 文件。我想添加一个任务来启动我的节点应用程序并监视目录中的更改并重新启动。我一直在使用supervisor,node-dev(很棒),但我想运行一个命令并启动我的整个应用程序。必须有一个简单的方法来做到这一点,但我只是想念它。它也是用咖啡脚本编写的(不确定这是否会改变事情)......
module.exports = function(grunt) {
grunt.initConfig({
/*exec: {
startApi: {
command: "npm run-script start-api"
}
},*/
//static server
server: {
port: 3333,
base: './public',
keepalive: true
},
// Coffee to JS compilation
coffee: {
compile: {
files: {
'./public/js/*.js': './src/client/app/**/*.coffee'
},
options: {
//basePath: 'app/scripts'
}
}
},
mochaTest: {
all: ['test/**/*.*']
},
watch: {
coffee: {
files: './src/client/app/**/*.coffee',
tasks: 'coffee'
},
mochaTest: {
files: 'test/**/*.*',
tasks: 'mochaTest'
}
}
});
grunt.loadNpmTasks('grunt-contrib-coffee');
grunt.loadNpmTasks('grunt-mocha-test');
//grunt.loadNpmTasks('grunt-exec');
grunt.registerTask( 'default', 'server coffee mochaTest watch' );
};
正如您在评论中看到的,我尝试了 grunt-exec,但 node 命令停止了其他任务的执行。