Created
September 21, 2016 20:50
-
-
Save aarongustafson/cd00d4624b9ca03d8ebbe453f0183011 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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