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,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']);
gulp.task('default', ['browser-sync', 'watch']);