Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 477 Bytes

building.md

File metadata and controls

31 lines (19 loc) · 477 Bytes

Build System

This project uses grunt to build the software.

Pre-requisites:

NodeJs - click to visit web site for installation instructions.

grunt-cli

npm install -g grunt-cli

bower

npm install -g bower

Common Tasks

Update dependencies (after each pull):

npm install

bower install

Running the build:

grunt

Automatically running the build and unit tests after each source change:

grunt watch