[API] Add watch for API docs

This commit is contained in:
Victor Woeltjen
2016-09-02 14:54:27 -07:00
parent 33ced4bccf
commit b5f62541ce
2 changed files with 6 additions and 1 deletions

View File

@ -156,6 +156,10 @@ gulp.task('api', function () {
.pipe(gulp.dest(paths.dist));
});
gulp.task('api-watch', function () {
return gulp.watch('src/**/*.js', ['api']);
});
gulp.task('serve', function () {
console.log('Running development server with all defaults');
var app = require('./app.js');