Skip to content

Instantly share code, notes, and snippets.

@pifantastic
Created November 27, 2013 19:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pifantastic/7681562 to your computer and use it in GitHub Desktop.
Save pifantastic/7681562 to your computer and use it in GitHub Desktop.
// Allow tasks to inherit a target.
var targetify = function( tasks ) {
return function( target ) {
grunt.task.run( tasks.map(function( name ) {
// Target may be blank.
return target ? name + ':' + target : name;
}));
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment