Bump html-bundler-webpack-plugin from 3.6.3 to 3.7.0
Bumps html-bundler-webpack-plugin from 3.6.3 to 3.7.0.
Changelog
Sourced from html-bundler-webpack-plugin's changelog.
3.7.0 (2024-03-21)
- feat: add the possibility to add many post processes. Next postprocess receives the result from previous. So you can extend this plugin with additional default functionality.
This feature is used in the pug-plugin for pretty formatting generated HTML.class MyPlugin extends HtmlBundlerPlugin { init(compiler) { MyPlugin.option.addProcess('postprocess', (content) => { // TODO: modify the generated HTML content return content; }); } } module.exports = { plugins: [ new MyPlugin({ entry: { index: './src/index.html', }, }), ], };
See an example in the test case.3.6.5 (2024-03-19)
- fix: define the unique instance name for the plugin as
HtmlBundlerPlugin
instead ofPlugin
3.6.4 (2024-03-17)
- fix: catching of the error when a peer dependency for a Pug filter is not installed
Commits
- See full diff in compare view
Dependabot commands
You can trigger Dependabot actions by commenting on this MR
-
$dependabot recreate
will recreate this MR rewriting all the manual changes and resolving conflicts