From 9b7c1a0a8dbd7268bc451425ce2f01bbb248e035 Mon Sep 17 00:00:00 2001 From: Jesper Hess Nielsen Date: Tue, 3 Jan 2017 20:26:09 +0100 Subject: [PATCH] Clean up gulpfile watch task a bit The watch task was looking at too much. Removed references to a few folders that aren't there anymore. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 0f406d5..da9a4ef 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -36,7 +36,7 @@ gulp.task('browser-sync', ['jekyll-build'], function() { * if you add folder for pages, collection or datas, add them to this list */ gulp.task('watch', function () { - gulp.watch(['./*', '_layouts/*', '_includes/*', '_posts/*', '_sass/*', 'css/*', 'jabber/*', 'keysigning/*'], ['jekyll-rebuild']); + gulp.watch(['./*', '_layouts/*', 'assets/**/*', 'keysigning/*'], ['jekyll-rebuild']); }); /**