5

我想创建一个 grunt 文件,它一个接一个地连续运行 3 个 grunt 任务,无论它们是失败还是通过。如果其中一个 grunts 任务失败,我想返回最后一个错误代码。

我试过了:

grunt.task.run('task1', 'task2', 'task3');

运行时带有--force选项。

这样做的问题是,当--force指定它时,无论错误如何,它都会返回错误代码 0。

谢谢

4

1 回答 1

7

使用grunt.util.spawn: http: //gruntjs.com/api/grunt.util#grunt.util.spawn

grunt.registerTask('serial', function() {
  var done = this.async();
  var tasks = {'task1': 0, 'task2': 0, 'task3': 0};
  grunt.util.async.forEachSeries(Object.keys(tasks), function(task, next) {
    grunt.util.spawn({
      grunt: true,  // use grunt to spawn
      args: [task], // spawn this task
      opts: { stdio: 'inherit' }, // print to the same stdout
    }, function(err, result, code) {
      tasks[task] = code;
      next();
    });
  }, function() {
    // Do something with tasks now that each
    // contains their respective error code
    done();
  });
});
于 2013-05-13T20:06:26.767 回答