Is it possible to have a callback when a multitask finishes executing? I am developing a grunt task and after my multitask loops through all the data, I want to have a callback that will save my results to a file. Now, I am checking the length of the parameters of the config object to decide if all the config data run.
A very simplified example
Task
module.exports = function(grunt) {
"use strict";
var items = [];
grunt.registerMultiTask('sample task', 'sample task description', function() {
grunt.file.recurse(task.file.src, function(abspath, rootdir, subdir, filename) {
items.push(abspath)
});
});
};
Grunt init
grunt.initConfig({
mytask: {
run1: {
src: 'something'
},
run2: {
src: 'something'
},
run3: {
src: 'something'
}
}
})
After run1,run2,run3 finished I want to use the items array to run another task
edit
It seems this functionality is not yet implemented https://github.com/gruntjs/grunt/issues/542#issuecomment-11338663