Skip to content

Instantly share code, notes, and snippets.

@FrankFang
Created November 30, 2013 14:55
Show Gist options
  • Save FrankFang/7720013 to your computer and use it in GitHub Desktop.
Save FrankFang/7720013 to your computer and use it in GitHub Desktop.
module.exports = function(grunt){
grunt.init({
//task options go here
});
//load grunt tasks
grunt.loadNpmTasks('task goes here'); /* example grunt.loadNpmTasks('compass'); */
//asign tasks
grunt.registerTask('default',[ 'task goes here'] ); /* example grunt.registerTask('compile',['compass']); */
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment