Basically I'd like to run grunt
after my generator finishes installing dependencies, I found that you can add a callback
function to the installDependencies
method to run after everything has been installed like this:
this.on('end', function () {
this.installDependencies({
skipInstall: options['skip-install'],
callback: function () {
console.log('All done!');
}
});
});
However I'm not sure how to run the grunt
task (as in going to the terminal and running "grunt")