Please use the official angular-ui project: https://github.com/ng-bootstrap/ng-bootstrap
Project started from: https://github.com/mgechev/angular2-seed
Demo available here: http://mlaval.github.io/angular2-bootstrap/
- install Gulp and TSD globally:
npm install -g gulp tsd
- install local npm modules:
npm install
To build the project:
- run
gulp build.dev
orgulp build.prod
to build it into dist folder
To start the demo application:
- run
gulp serve.dev
orgulp.serve.prod
to build it and start a webserver which watches source files at http://localhost:5555
To run unit tests and watch source files:
- run
gulp test
To run end to end tests:
- run
gulp e2e
To clean all files created during builds:
- run
gulp clean