Skip to content

Bump html-bundler-webpack-plugin from 3.8.0 to 3.11.0

Bumps html-bundler-webpack-plugin from 3.8.0 to 3.11.0.

Changelog

Sourced from html-bundler-webpack-plugin's changelog.

3.11.0 (2024-04-23)

  • feat: add entryFilter option to include or exclude entry files when the entry option is the path

3.10.0 (2024-04-18)

  • feat: add support the CSS Modules for styles imported in JS using the css-loader modules option.
    Required: css-loader >= 7.0.0
    The CSS module rule in the webpack config:
    {
      test: /\.(css)$/,
      use: [
        {
          loader: 'css-loader',
          options: {
            modules: {
              localIdentName: '[name]__[local]__[hash:base64:5]',
              exportLocalsConvention: 'camelCase',
            },
          },
        },
      ],
    },
    CSS:
    .red {
      color: red;
    }
    .green {
      color: green;
    }
    Using in JS:
    // the styles contains CSS class names: { red: 'main__red__us4Tv', green: 'main__green__bcpRp' }
    import styles from './main.css';

3.9.1 (2024-04-10)

  • fix: issue when used js dynamic import with magic comments /* webpackPrefetch: true */ and css.inline=true, #88
  • fix: ansi colors for verbose output in some terminals

3.9.0 (2024-04-07)

  • feat: add support for dynamic import of styles
    const loadStyles = () => import('./component.scss');

... (truncated)

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