#Grunt & HTML5 Draft
####This is a simple HTML5 Draft with Grunt JS TaskRunner configured.
####Included:
Grunt Tasks: htmlmin, less, concat, cssmin, uglify, imagemin, watch, newer;
- Google Fonts CDN;
- Font Awesome (v4.2.0);
- JQuery (v1.11.1);
- Modernizr (v2.8.3);
- Twitter Bootstrap.css (v3.2.0);
- Twitter Bootstrap.js (v3.2.0);
- Local CSS file;
- Local JS file;
- This command will install all the dependencies inside the package.json file needed for Grunt, and Grunt Task's to run.
- This is the Grunt default task command wich is used to manually run the Grunt tasks.
- Executing this task will create a folder named 'dest/..' where the .js .html and .css files will be minified and concatenated.
- There will also be created a folder named 'deletable/..' that can be deleted.
- The folder 'deletable/..' will have all the .css and .js files concatenated, but after the minification of these files this folder will no longer be needed.
- This is the Grunt watch task that will watch for changes for the specified files inside the gruntfile.js, and when a file has changed it will process that file for you without any effort from your side.