Created
June 29, 2013 07:25
-
-
Save tjchaplin/5890223 to your computer and use it in GitHub Desktop.
Getting Started With Grunt
This file contains 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
//install grunt command line interface(CLI) | |
npm install -g grunt-cli | |
//install grunt into the projects modules | |
npm install grunt --save-dev | |
//install JSHint package | |
npm install grunt-contrib-jshint --save-dev | |
//install Watch configuration | |
npm install grunt-contrib-watch --save-dev | |
//install Grunt Release | |
npm install grunt-release --save-dev |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment