perform file includes after mustache templating
This commit is contained in:
parent
e1a882f40a
commit
da24e36530
|
@ -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));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue