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.
This commit is contained in:
Jesper Hess 2017-01-03 20:26:09 +01:00
parent b734ea9777
commit 9b7c1a0a8d
Signed by: graffen
GPG Key ID: 351A89E40D763F0F
1 changed files with 1 additions and 1 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/*', '_includes/*', '_posts/*', '_sass/*', 'css/*', 'jabber/*', 'keysigning/*'], ['jekyll-rebuild']);
gulp.watch(['./*', '_layouts/*', 'assets/**/*', 'keysigning/*'], ['jekyll-rebuild']);
});
/**