Skip to content

Commit 18412a7

Browse files
committed
fix(gulp:watch): re-compile jade to .tmp
1 parent 009b789 commit 18412a7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/templates/gulpfile.babel(gulp).js

+3-1
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,9 @@ gulp.task('watch', () => {
377377
.pipe(plugins.livereload());
378378
});
379379

380-
plugins.watch(paths.client.views)
380+
plugins.watch(paths.client.views)<% if(filters.jade) { %>
381+
.pipe(plugins.jade())
382+
.pipe(gulp.dest('.tmp'))<% } %>
381383
.pipe(plugins.plumber())
382384
.pipe(plugins.livereload());
383385

0 commit comments

Comments
 (0)