From d75350493a97fc01e1bbc5c53f699bf788fa4564 Mon Sep 17 00:00:00 2001 From: Adam Mockor Date: Thu, 10 Nov 2016 19:17:02 +0100 Subject: [PATCH 1/2] fix watch task not listening *.pug files --- app/templates/gulp/tasks/_watch.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/gulp/tasks/_watch.js b/app/templates/gulp/tasks/_watch.js index 3995fa0..2a0e457 100644 --- a/app/templates/gulp/tasks/_watch.js +++ b/app/templates/gulp/tasks/_watch.js @@ -9,6 +9,6 @@ var reload = require('./browserSync.js').reload; gulp.task('watch', 'Watch source files', function () { gulp.watch(config.watch.styles, ['styles']); - gulp.watch(config.watch.jade, ['templates', reload]); + gulp.watch(config.watch.pug, ['templates', reload]); gulp.watch(config.watch.scripts, ['scripts', reload]); }); From da86e329fba01525cfcb0215347929eb5613dad6 Mon Sep 17 00:00:00 2001 From: Adam Mockor Date: Thu, 10 Nov 2016 19:17:36 +0100 Subject: [PATCH 2/2] version bump --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a3bb47d..bbea397 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "generator-lb", - "version": "4.0.0", + "version": "4.0.1", "description": "Lighting Beetle static website/templates generator", "license": "WTFPL", "repository": "https://github.com/lightingbeetle/generator-lb",