Project PitBull - Build tool and setup code
Technologies being used client side include: backbone.js for MVC and underscore HTML5 CSS3 (incl rounded corners, opacity, drop shadow) node for build etc. including grunt, snockets, lint, jshint less for css dust for templating jquery elements of twitter bootstrap grid960 jasmine for testing Omniture for analytics Solr integration capistrano deploy Building and linting Lots of tasks as part of your javascript development workflow these days such as: linting, minify, running less build for css etc. so a build tool is important to have. I want to setup an environment with a watcher to lint and build the code as changes are saved. Dice , a very smart Fluid coder colleague recommends a tool called Grunt which runs on node. So I followed his example Ensure Node is installed . If you have Node installed then to install Grunt run npm install -g grunt I had to prefi...