chore: add apidoc watch command

This commit is contained in:
Blade Barringer
2016-09-30 11:22:35 -05:00
parent 76499412ed
commit 97840ed732

View File

@@ -20,3 +20,7 @@ gulp.task('apidoc', ['apidoc:clean'], (done) => {
done();
}
});
gulp.task('apidoc:watch', ['apidoc'], () => {
return gulp.watch(APIDOC_SRC_PATH + '/**/*.js', ['apidoc']);
});