Skip to content

Instantly share code, notes, and snippets.

@aarongustafson
Created September 21, 2016 20:50
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 aarongustafson/cd00d4624b9ca03d8ebbe453f0183011 to your computer and use it in GitHub Desktop.
Save aarongustafson/cd00d4624b9ca03d8ebbe453f0183011 to your computer and use it in GitHub Desktop.
var gulp = require('gulp');
gulp.task('watch', function() {
gulp.watch('source/scss/**', ['styles']);
gulp.watch('source/js/**', ['scripts']);
gulp.watch('source/images/**', ['images']);
gulp.watch('source/templates/**', ['html']);
gulp.watch('source/data/**', ['html']);
gulp.watch('source/webconfigs/**/*', ['webconfigs']);
gulp.watch('deploy/*.html', ['a11y']);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment