diff --git a/gulpfile.js b/gulpfile.js index 3c97afd48c..4a535e2e39 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -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'); diff --git a/src/MCT.js b/src/MCT.js index 95c625c676..d2836c490f 100644 --- a/src/MCT.js +++ b/src/MCT.js @@ -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 */ function MCT() {