Skip to content

Instantly share code, notes, and snippets.

@RaphiStein
Created November 24, 2015 06:26
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 RaphiStein/37e7700e6da324ffe947 to your computer and use it in GitHub Desktop.
Save RaphiStein/37e7700e6da324ffe947 to your computer and use it in GitHub Desktop.
Very Basic Custom Grunt Task
module.exports = function(grunt){
grunt.initConfig({});
grunt.registerTask("mine", ["this is mine"], function(arg){
grunt.log.writeln("Oy vey!");
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment