Skip to content

Instantly share code, notes, and snippets.

@ahmadawais
Last active May 2, 2016 07:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahmadawais/d4a30d4f4179211feeac to your computer and use it in GitHub Desktop.
Save ahmadawais/d4a30d4f4179211feeac to your computer and use it in GitHub Desktop.
Gulp: Watch task
// Watch Task
gulp.task('default', ['styles', 'vendorsJs', 'scriptsJs', 'images', 'browser-sync'], function () {
gulp.watch('./assets/img/raw/**/*', ['images']);
gulp.watch('./assets/css/**/*.scss', ['styles']);
gulp.watch('./assets/js/**/*.js', ['scriptsJs', browserSync.reload]);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment