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
0
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 Compare versions

Comparing version 3.17.0 to 3.17.1

4

CHANGELOG.md
# Change log
## 3.17.1 (2024-08-01)
- fix: when using the integrity option, leaves the original attributes in the script tag as is
## 3.17.0 (2024-07-23)

@@ -4,0 +8,0 @@

2

package.json
{
"name": "html-bundler-webpack-plugin",
"version": "3.17.0",
"version": "3.17.1",
"description": "HTML bundler plugin for webpack handles a template as an entry point, extracts CSS and JS from their sources referenced in HTML, supports template engines like Eta, EJS, Handlebars, Nunjucks.",

@@ -5,0 +5,0 @@ "keywords": [

@@ -1031,3 +1031,4 @@ const path = require('path');

for (const attrName in attrs) {
attrsStr += ` ${attrName}="${attrs[attrName]}"`;
let value = attrs[attrName];
attrsStr += value == null ? ` ${attrName}` : ` ${attrName}="${value}"`;
}

@@ -1034,0 +1035,0 @@

Sorry, the diff of this file is too big to display

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