aboutsummaryrefslogtreecommitdiffstats
path: root/gulpfile.babel.js
diff options
context:
space:
mode:
authorDarin Dimitroff <d@thecrazyones.agency>2017-01-01 17:04:58 +0200
committerDarin Dimitroff <d@thecrazyones.agency>2017-01-01 17:04:58 +0200
commit85d881011b693f788da31528cadbe9227ed3818b (patch)
tree98bba557675852156b66e0fd264a06260d64272d /gulpfile.babel.js
parent3b22104cc5442fccce778d3f4e197e6e8bee8b23 (diff)
Adds SVG sprite to watch task
Diffstat (limited to 'gulpfile.babel.js')
-rw-r--r--gulpfile.babel.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/gulpfile.babel.js b/gulpfile.babel.js
index fd93ae4..06f9435 100644
--- a/gulpfile.babel.js
+++ b/gulpfile.babel.js
@@ -67,6 +67,7 @@ gulp.task("server", ["hugo", "css", "js", "svg"], () => {
});
gulp.watch("./src/js/**/*.js", ["js"]);
gulp.watch("./src/css/**/*.css", ["css"]);
+ gulp.watch("./site/static/img/icons/*.svg", ["svg"]);
gulp.watch("./site/**/*", ["hugo"]);
});