I see from the browsersync docs that on the watch method you can add two events
gulp.watch("app/scss/*.scss", ['sass']);
gulp.watch("app/*.html").on('change', browserSync.reload);
What's the difference between the two? Is not watch
automatically linked to any change event?
Thanks