Skip to the content.

🔗 https://gulpjs.com/docs/en/api/watch/

const gulp = require('gulp');

gulp.task('serve', function(){
    // run task on file change
    gulp.watch(['filename.txt'], gulp.series('export'));
});