Update gulpfile to match new location of blog.html

This commit is contained in:
Jesper Hess 2017-01-08 12:19:35 +01:00
parent 9328056428
commit 7ac88bdcab
Signed by: graffen
GPG Key ID: 351A89E40D763F0F
1 changed files with 2 additions and 2 deletions

View File

@ -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/*', '_pages/*', '_includes/*', '_posts/*', '_sass/*', 'css/*'], ['jekyll-rebuild']);
gulp.watch(['./*', '_layouts/*', '_pages/*', '_includes/*', '_posts/*', 'blog/*', '_sass/*', 'assets/**/*'], ['jekyll-rebuild']);
});
/**