cibgraphics
5/16/2014 - 3:06 PM

Basic setup for Grunt

Basic setup for Grunt

{
  "name": "my-project-name",
  "version": "0.1.0",
  "devDependencies": {
    "grunt": "~0.4.5"
  }
}
module.exports = function(grunt) {
  
  // Make sure when installing plugins to use 'npm install <module> --save-dev' to have it add automatically to package.json
  // When installing from a already setup project, use 'npm install' to install dependencies 

  // Project configuration.
  grunt.initConfig({
    pkg: grunt.file.readJSON('package.json'),
    
    // Add plugin tasks
    
  });

  // Load the plugin 
  

  // Default task(s).
  grunt.registerTask('default', ['']);

};