Hello !
esdoc-standard-plugin isn't taking the template option into account the way the stand-alone esdoc-publish-html-plugin does.
In fact, we can see in plugin.js that no option is passed to the plugin when using esdoc-standard-plugin :
I tried replacing the faulty line with {name: 'esdoc-publish-html-plugin', option: option.template} as a potential trivial fix that it didn't do the trick. (template isn't used)
Currently, I have to import the esdoc-publish-html-plugin separately but this implies minor incompatibility issues between the plugins (coverage rates not showing up in the Source page when using a template).
Hello !
esdoc-standard-plugin
isn't taking thetemplate
option into account the way the stand-aloneesdoc-publish-html-plugin
does. In fact, we can see inplugin.js
that no option is passed to the plugin when usingesdoc-standard-plugin
:I tried replacing the faulty line with
{name: 'esdoc-publish-html-plugin', option: option.template}
as a potential trivial fix that it didn't do the trick. (template isn't used)Currently, I have to import the
esdoc-publish-html-plugin
separately but this implies minor incompatibility issues between the plugins (coverage rates not showing up in the Source page when using a template).Thanks for helping !