Собственно, в .html шаблонах работает прекрасно, а вот с pug - отказывается.
Комментарии pug:
//- build:css
//- vendor:css
//- endinject
//- inject:css
//- endinject
//- endbuild
Конфиг для html:
// html task options
html: {
// build:html:inject options
injectCss: {
options: {
relative: true,
name: 'build',
starttag: '//- build:css',
endtag: '//- endbuild',
removeTags: true
}
},
injectJs: {
options: {
relative: true,
name: 'build',
starttag: '//- build:js',
endtag: '//- endbuild',
removeTags: true
}
}
},
Конфиг для pug:
// pug task options
pug: {
// inject task options
injectCss: {
vendorOptions: {
relative: true,
name: 'vendor',
starttag: '//- vendor:css',
endtag: '//- endinject',
},
mainOptions: {
relative: true,
}
},
injectJs: {
options: {
relative: true,
starttag: '//- inject:js',
endtag: '//- endinject',
}
}
},
Не могу понять в чем проблема.
Полное окружение доступно по ссылке:
https://github.com/gsup1/gulp-workflow
P.s За основу было взято это окружение
https://github.com/mohamdio/gulp-workflow Я лишь пытаюсь его модифицировать под себя, вместо шаблонизатора nunjucks я пытаюсь использовать pug.
Спасибо заранее за помощь.