[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)); .pipe(gulp.dest(paths.dist));
}); });
gulp.task('api-watch', function () {
return gulp.watch('src/**/*.js', ['api']);
});
gulp.task('serve', function () { gulp.task('serve', function () {
console.log('Running development server with all defaults'); console.log('Running development server with all defaults');
var app = require('./app.js'); var app = require('./app.js');

View File

@ -19,7 +19,8 @@ define([
) { ) {
/** /**
* The Open MCT application. * The Open MCT application. This may be configured by installing plugins
* or registering extensions before the application is started. Foo?
* @class MCT * @class MCT
*/ */
function MCT() { function MCT() {