Skip to content

Instantly share code, notes, and snippets.

@DmitriBarannyk
Created October 22, 2018 21:51
Show Gist options
  • Select an option

  • Save DmitriBarannyk/fc939f945696409fbbaadbb15cb5e36d to your computer and use it in GitHub Desktop.

Select an option

Save DmitriBarannyk/fc939f945696409fbbaadbb15cb5e36d to your computer and use it in GitHub Desktop.
goal
gulp.task('watch', ['browser-sync', 'sass'], function() {
gulp.watch('app/sass/**/*.sass', ['sass']); // Наблюдение за sass файлами
gulp.watch('app/*.html', browserSync.reload);
gulp.watch('app/js/**/*.js', browserSync.reload);
// Наблюдение за другими типами файлов
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment