perform file includes after mustache templating

This commit is contained in:
Ray Elliott 2020-05-20 19:18:29 +01:00
parent e1a882f40a
commit da24e36530
1 changed files with 1 additions and 1 deletions

View File

@ -75,12 +75,12 @@ function svgOptimise() {
function htmlCompile() { function htmlCompile() {
return src(htmlSrc) return src(htmlSrc)
.pipe(mustache())
.pipe( .pipe(
fileInclude({ fileInclude({
basepath: includeBaseDir, basepath: includeBaseDir,
}) })
) )
.pipe(mustache())
.pipe(dest(htmlDest)); .pipe(dest(htmlDest));
} }