A light framework aimed for quick use by Front-End Developers.
- Clone repo into local file
- Change your project information in
package.json
Example:
{
"name": "Your project name",
"description": "Your description",
"version": "0.0.1",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-less": "~1.0.0",
"grunt-contrib-watch": "~0.6.1"
},
"license": "MIT"
}
- From terminal install grunt command line interface :
npm install -g grunt-cli
- Install grunt
npm install grunt
- More information about grunt here.