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:
parent
b734ea9777
commit
9b7c1a0a8d
|
@ -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']);
|
||||
});
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue