如何将npm脚本转换为grunt任务?

时间:2014-07-16 21:40:00

标签: javascript node.js gruntjs nodemon

我的nodeJS有以下脚本。

"scripts": {
    "start": "grunt",
    "test": "node --debug --harmony node_modules/grunt-cli/bin/grunt test"
}

我正在运行节点v0.11.13所以我需要设置--harmony flag。如果我用npm测试启动它们,那么测试就会正确配置,但我更愿意将它全部放在grunt文件中。有没有办法配置grunt来启动服务器并运行测试?

1 个答案:

答案 0 :(得分:2)

您可以创建一个别名任务,使用这些节点标志生成grunt,如:

grunt.registerTask('debug', function() {
  var done = this.async();
  // Specify tasks to run spawned
  var tasks = Array.prototype.slice.call(arguments, 0);
  grunt.util.spawn({
    // Use the existing node path
    cmd: process.execPath,
    // Add the flags and use process.argv[1] to get path to grunt bin
    args: ['--debug', '--harmony', process.argv[1]].concat(tasks),
    // Print everything this process is doing to the parent stdio
    opts: { stdio: 'inherit' }
  }, done);
});

然后,您可以启动服务器并使用以下命令运行测试:grunt default debug:test

或者任何组合:

  • grunt server test(无节点标志运行)
  • grunt debug:server:test(使用节点标志运行)。