From 827e6c1cde0aa4ca65e6c170174eae91da9aa4c9 Mon Sep 17 00:00:00 2001 From: Stephan Hagedorn Date: Sat, 13 Mar 2021 13:50:03 +0100 Subject: [PATCH] Fix data path --- gulpfile.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 50646d1..386e3a3 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -1,3 +1,6 @@ +// Use hippie +// const hippie = require('hippie/hippie'); + // Setup project const config = require('./gulp/config'); @@ -274,7 +277,7 @@ function code2() { function overview() { - watch([input.templates, input.screens, config.frontendData], series(nunjucks, reload)); + watch([input.templates, input.screens, config.frontendData + 'data/**/*.json'], series(nunjucks, reload)); // watch(input.style, series(styleLint, style, reload)); watch(input.style, series(style, reload)); // watch(input.code, series(codeLint, code, reload));