From 7ac88bdcaba3c5c880882f00f3722a57156ec30a Mon Sep 17 00:00:00 2001 From: Jesper Hess Nielsen Date: Sun, 8 Jan 2017 12:19:35 +0100 Subject: [PATCH] Update gulpfile to match new location of blog.html --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index f32a5c5..7dd374e 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -36,11 +36,11 @@ 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/*', '_pages/*', '_includes/*', '_posts/*', '_sass/*', 'css/*'], ['jekyll-rebuild']); + gulp.watch(['./*', '_layouts/*', '_pages/*', '_includes/*', '_posts/*', 'blog/*', '_sass/*', 'assets/**/*'], ['jekyll-rebuild']); }); /** * Default task, running just `gulp` will compile the sass, * compile the jekyll site, launch BrowserSync & watch files. */ -gulp.task('default', ['browser-sync', 'watch']); \ No newline at end of file +gulp.task('default', ['browser-sync', 'watch']);