Add function-callback support for tasks in grunt/aliases.yaml
My use-case: I'd like to react on the result of a predefined task
like nodeunit to e.g. prompt to ingore failture.
The same goes for custom registeredTasks.
or e.g. the connect proxy task:
grunt.registerTask('server', function (target) {
grunt.task.run([
'configureRewriteRules',
'connect:mypage',
'open:page'
]);
});
Add function-callback support for tasks in grunt/aliases.yaml
My use-case: I'd like to react on the result of a predefined task like nodeunit to e.g. prompt to ingore failture. The same goes for custom registeredTasks.
or e.g. the connect proxy task:
How do you suggest perform?
Thanks