我正在尝试在 grunt 中创建一个自动调用其“先决条件”的自定义任务。我不确定该怎么做。Grunt.js文档展示了这个例子:
grunt.registerTask('foo', 'My "foo" task.', function() {
// Enqueue "bar" and "baz" tasks, to run after "foo" finishes, in-order.
grunt.task.run('bar', 'baz');
... // Other stuff here
});
我不想“排队bar
并baz
在之后foo
”,我想在那里执行它们,grunt.task.run
行在哪里,所以它们在我的“其他东西”之前被执行。
我怎么做?