We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d97c609 commit 0c44489Copy full SHA for 0c44489
gulpfile.js
@@ -34,7 +34,7 @@ gulp.task( 'lint', lintTask );
34
gulp.task( 'build', buildTask );
35
gulp.task( 'test', [ 'build' ], testTask );
36
gulp.task( 'doc', [ 'build', 'typescript' ], docTask );
37
-gulp.task( 'serve', [ 'typescript' ], serveTask );
+gulp.task( 'serve', [ 'typescript', 'doc' ], serveTask );
38
gulp.task( 'typescript', typescriptTask ); // for examples
39
40
@@ -91,6 +91,7 @@ function lintTask() {
91
92
function serveTask() {
93
gulp.watch( './examples/live-example/src/**', [ 'typescript' ] );
94
+ gulp.watch( './src/**', [ 'doc' ] );
95
96
connect.server();
97
}
0 commit comments