Update Gulp config

This commit is contained in:
Oliver Davies 2016-05-28 01:23:17 +01:00
parent 0a938593a6
commit 6dabfac540
6 changed files with 32 additions and 14 deletions

View file

@ -1,6 +1,7 @@
gulp.task('watch', function () {
plugins.refresh.listen();
gulp.watch(config.assetsDir + '/' + config.sassPattern, ['styles']);
gulp.watch(config.assetsDir + '/' + config.jsPattern, ['scripts']);
gulp.watch(config.sass.source + config.sass.search, ['styles']);
gulp.watch(config.sass.source + config.scss.search, ['styles']);
gulp.watch(config.js.source + config.js.search, ['scripts']);
});