admin管理员组文章数量:1340454
Here's my Gruntfile and the output.
As you can see in the output, there are a couple of issues related to asynchronous tasks:
imagemin
is called and the next one es straight ahead. This makes its output appear in the end of the tasks, what's quite messy;build
, which is a custom task, is usingvar done = this.async()
and callingdone()
after finishing the mand; however, this only works correctly if I run the task alone; running it with another tasks makes it run async too;- With
build
running later,jasmine
has nothing to test and thus is useless.
Is there a way to fix this behavior?
Here's my Gruntfile and the output.
As you can see in the output, there are a couple of issues related to asynchronous tasks:
imagemin
is called and the next one es straight ahead. This makes its output appear in the end of the tasks, what's quite messy;build
, which is a custom task, is usingvar done = this.async()
and callingdone()
after finishing the mand; however, this only works correctly if I run the task alone; running it with another tasks makes it run async too;- With
build
running later,jasmine
has nothing to test and thus is useless.
Is there a way to fix this behavior?
Share Improve this question asked Mar 31, 2013 at 22:50 igorsantos07igorsantos07 4,6927 gold badges49 silver badges65 bronze badges 1- I never had problems with Grunt's this.async(). Probably a bad side effect of another task? Have you tried your task chain without imagemin? – Sebastian vom Meer Commented Apr 1, 2013 at 12:15
2 Answers
Reset to default 9I believe your problem is with this task:
grunt.registerTask('prepare-dist', 'Creates folders needed for distribution', function() {
var folders = ['dist/css/images', 'dist/imgs/icons'];
for (var i in folders) {
var done = this.async();
grunt.util.spawn({ cmd: 'mkdir', args: ['-p', folders[i]] }, function(e, result) {
grunt.log.writeln('Folder created');
done();
});
}
});
If you have multiple folders, both async() and done() will be called multiple times. Async is implemented as a simple flag (true/false) and is meant to be called once. The first done() call allows any follow on tasks to run.
There are many ways to move the calls to async and done out of the loop. A quick google search on something like: nodejs how to callback when a series of async tasks are plete
will give you some additional options. A couple of quick (& dirty) examples:
// Using a stack
(function() {
var work = ['1','2','3','4','5']
function loop(job) {
// Do some work here
setTimeout(function() {
console.log("work done");
work.length ? loop(work.shift()) : done();
}, 500);
}
loop(work.shift());
function done() {
console.log('all done');
}
})();
-- or --
// Using a counter (in an object reference)
(function() {
var counter = { num: 5 }
function loop() {
// Do some work here
setTimeout(function() {
--counter.num;
console.log("work done");
counter.num ? loop() : done();
}, 500);
}
loop();
function done() {
console.log('all done');
}
})();
As you could read in the Grunt documentation:
If a task is asynchronous, this.async method must be invoked to instruct Grunt to wait. It returns a handle to a "done" function that should be called when the task has pleted.
And a short example would be similar to:
// Tell Grunt this task is asynchronous.
var done = this.async();
// Your async code.
fetchData(url).then( data => {
console.log(data);
done();
}).catch( error => {
console.err(error);
done(false); // false instructs Grunt that the task has failed
});
本文标签: javascriptHow to make Grunt wait for a task to finish before running anotherStack Overflow
版权声明:本文标题:javascript - How to make Grunt wait for a task to finish before running another? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743641497a2514790.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论