Skip to content

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.
    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',
    },
    }),
    ],
    };
    This feature is used in the pug-plugin for pretty formatting generated 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 of Plugin

3.6.4 (2024-03-17)

  • fix: catching of the error when a peer dependency for a Pug filter is not installed
Commits


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

Merge request reports

Loading