Skip to content

Instantly share code, notes, and snippets.

@blackjk3
Last active January 1, 2016 03:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blackjk3/8084897 to your computer and use it in GitHub Desktop.
Save blackjk3/8084897 to your computer and use it in GitHub Desktop.
Grunt startup

Install Grunt for Sass and JST automation

$ npm install -g grunt-cli

Create package.json

{
    "name" : "SampleGrunt",
    "version" : "0.1.0",
    "author" : "Brandon Random",
    "private" : true,

    "devDependencies" : {
        "grunt" :                   "~0.4.0"
    } 
}

Install grunt and other node_modules

$ npm install --Possibly $ sudo npm install

To run

$ grunt sass

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment