Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
Can you provide some code from your task? – jm- Dec 12 '12 at 7:09
Provided some code – chchrist Dec 12 '12 at 9:59

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.