From da24e36530c4d8344fe43ded7464af9d34929b9e Mon Sep 17 00:00:00 2001 From: ray Date: Wed, 20 May 2020 19:18:29 +0100 Subject: [PATCH] perform file includes after mustache templating --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 0068dc8..b91a441 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -75,12 +75,12 @@ function svgOptimise() { function htmlCompile() { return src(htmlSrc) + .pipe(mustache()) .pipe( fileInclude({ basepath: includeBaseDir, }) ) - .pipe(mustache()) .pipe(dest(htmlDest)); }