- Node Package Manager (NPM)
- Git
Run the commands below in the project root directory. #####1. Install Grunt and Bower
$ sudo npm install -g grunt-cli bower
#####2. Install project dependencies
$ npm install
$ bower install
####Generate build
The build version is located in the dist
directory.
$ grunt
####Run tests separately The tests need to pass in order to generate a build.
$ grunt test
Tests can also be run continuously:
$ grunt test:continuous
$ mvn deploy