Build the source
NPM
cd gulp-tasks
$ npm install
Gulp
Install local gulp from project root
npm install gulp
Typescript Typings
Install Typingscd src/scripts
typings install
Gulp tasks
Build and development
Watch task, watches .styl, .ts, .jpg, .png, .gif, compiles to /build
Compiles (same as build) and watches files.
gulp
Distribution
Compiles build files, to run locally, runs docs, examples, conversational form scripts and styles and finally runs through Karma tests.
gulp dist
Tests / Unit tests
We are using Travis and Karma to run tests.
karma start
this will run through the tests defined in .tests, after starting karma, you can access http://localhost:9876 to view and modify the tests-cases.