For the complete documentation index, see llms.txt. This page is also available as Markdown.

Custom Watchers

If you would like your custom task to be re-triggered while running gulp watch, you may register a watcher:

new Task( 'speak', function(){
    return gulp.src( '' ).pipe( shell( 'say ' + message ) );
})
.watch( './app/**' );

Last updated