Enable gulp to watch images

This commit is contained in:
Bartlomiej Pluta (PGS Software)
2018-03-19 11:40:45 +01:00
parent e7155c01f7
commit 02e1bd30a3

View File

@@ -46,6 +46,7 @@ gulp.task('serve', function() {
gulp.watch(config.htmlIn, function() { sequence('html', 'reload') });
gulp.watch(config.scssIn, function() { sequence('sass', 'css', 'reload') });
gulp.watch(config.jsIn, function() { sequence('js', 'reload') });
gulp.watch(config.imgIn, function() { sequence('img', 'reload') });
});
gulp.task('sass', function() {