Split Gulp tasks into their own files

This commit is contained in:
Oliver Davies 2016-05-27 23:25:38 +01:00
parent c743e5f9f3
commit 5e8b52c338
11 changed files with 51 additions and 51 deletions

6
gulp/watch.js Normal file
View file

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