New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

html-bundler-webpack-plugin

Package Overview
Dependencies
Maintainers
1
Versions
192
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

html-bundler-webpack-plugin - npm Package Versions

13
20

4.15.0-beta.0

Diff

Changelog

Source

4.15.0-beta.0 (2025-01-20)

  • feat: add the fixed preload filter:
    type PreloadFilter =
      | RegExp
      | Array<RegExp>
      | { includes?: Array<RegExp>; excludes?: Array<RegExp> }
      | ((asset: { sourceFiles: Array<string>; outputFile: string }) => void | boolean); // <= BRAKING CHANGES compared to v4.14.0 (DEPRECATED)
    
webdiscus
published 4.14.0 •

Changelog

Source

4.14.0 (2025-01-19) DEPRECATED (filter API will be changed in next version)

  • feat: add the filter for the preload option
    type AdvancedFilter =
      | RegExp
      | Array<RegExp>
      | { includes?: Array<RegExp>; excludes?: Array<RegExp> }
      | ((value: string) => void | true | false); // <= string argument DEPRECATED
    
webdiscus
published 4.13.0 •

Changelog

Source

4.13.0 (2025-01-18)

  • feat: add support for preloading of dynamic imported modules, #138
webdiscus
published 4.12.3 •

Changelog

Source

4.12.3 (2025-01-18)

  • fix: output URL for preloaded resources if publicPath is a URL or root path, #141
webdiscus
published 4.12.2 •

Changelog

Source

4.12.2 (2025-01-13)

  • fix: allow to define the renderStage option lower than PROCESS_ASSETS_STAGE_SUMMARIZE, #137
webdiscus
published 4.12.1 •

Changelog

Source

4.12.1 (2025-01-12)

  • fix: incorrect output of preload tag if "crossorigin: true", #139
  • fix: if as=font is used in preload and the crossorigin is not defined, it will be added automatically, because the crossorigin is mandatory for font type
webdiscus
published 4.12.0 •

Changelog

Source

4.12.0 (2025-01-12)

  • feat(release): add support for the ?inline query to load assets as data URL
  • test: add tests for ?inline query
  • docs: update readme for new feature
webdiscus
published 4.12.0-beta.0 •

Changelog

Source

4.12.0-beta.0 (2025-01-06)

  • feat: add support for the ?inline query by importing SVG file in JS as data URL
    import file from './image.svg'; // import according the matched webpack config, defaults as output filename
    
    import file from './image.svg?inline'; // import as UTF-8 data URL
    import file from './image.svg?inline=utf8'; // import as UTF-8 data URL
    import file from './image.svg?inline=base64'; // import as base64-encoded data URL
    
  • chore: update dependencies
  • chore: update license to current date
  • docs: add in readme the recipe "How to import SVG in JavaScript"
webdiscus
published 4.11.1 •

Changelog

Source

4.11.1 (2024-12-27)

  • fix: in TypeScript the renderStage option should be optional
webdiscus
published 4.11.0 •

Changelog

Source

4.11.0 (2024-12-27)

  • feat: add the renderStage option to define the stage for rendering output HTML in the processAssets Webpack hook
  • fix: set default render stage before the stage used in compression-webpack-plugin to save completely rendered HTML, #134
  • test: add test for the render stage
  • docs: add documentation for the new option in readme
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc