From 72c2b3b5dd24ffd498b9701b388a591bea15d882 Mon Sep 17 00:00:00 2001 From: Bachir Soussi Chiadmi Date: Mon, 1 May 2017 12:37:17 +0200 Subject: [PATCH] gulpfile, do not rebuild content when assets are modified --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index ad8a4b3..5ca0633 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -42,5 +42,5 @@ gulp.task('build', shell.task([ gulp.task('default', ['webserver', 'sync', 'scss', 'gui', 'build'], function() { gulp.watch('./assets/css/**/*.scss', ['scss']); gulp.watch('./assets/css/gui.scss', ['gui']); - gulp.watch(['bin/build.py', './assets/css/**/*.scss', './assets/js/**/*.js', './templates/*.tpl.html'], ['build']); + gulp.watch(['bin/build.py', './book-src/*', './templates/*.tpl.html'], ['build']); });