Created
January 27, 2014 17:52
-
-
Save jlouthan/8653752 to your computer and use it in GitHub Desktop.
Basic Gruntfile.js generated by the Uncorked Studios getting-started grunt-init template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// wrapper function | |
module.exports = function(grunt){ | |
// load all our Grunt plugins | |
require('load-grunt-tasks')(grunt); | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json') | |
// task configuration goes here | |
}); | |
// define the default task that executes when we run 'grunt' from inside the project | |
grunt.registerTask('default', []); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment