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

mangle-css-class-webpack-plugin

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mangle-css-class-webpack-plugin - npm Package Compare versions

Comparing version 5.0.5 to 5.0.6

9

CHANGELOG.md

@@ -5,2 +5,11 @@ # Changelog

### [5.0.6](https://github.com/sndyuk/mangle-css-class-webpack-plugin/compare/v4.0.12...v5.0.6) (2021-12-30)
### Bug Fixes
* adapt to webpack 5 ([5f76d5b](https://github.com/sndyuk/mangle-css-class-webpack-plugin/commit/5f76d5b86abbc667f8b1a04b628cff0dee461e61))
* use right methods ([ca40bf2](https://github.com/sndyuk/mangle-css-class-webpack-plugin/commit/ca40bf25c75cdc197d57e7031b8f99ac0b012a91))
* **plugin:** use webpack 5 processAssets hook ([cf16845](https://github.com/sndyuk/mangle-css-class-webpack-plugin/commit/cf16845d7915ea9ba77d412dc9df63ac8f424c88))
### [5.0.5](https://github.com/sndyuk/mangle-css-class-webpack-plugin/compare/v4.0.12...v5.0.5) (2021-12-18)

@@ -7,0 +16,0 @@

2

lib/optimizer.js

@@ -82,3 +82,3 @@ const chalk = require('./chalk');

}
compilation.updateAsset(file, source, { minimized: true });
compilation.updateAsset(file, source);
};

@@ -85,0 +85,0 @@

@@ -20,3 +20,6 @@ const optimizer = require('./optimizer');

(compilation) => {
compilation.hooks.processAssets.tapAsync('MangleCssClassPluginOptimizeChunkAssetsHooks', runner(compiler, compilation, this.opts));
compilation.hooks.processAssets.tapAsync({
name: 'MangleCssClassPluginOptimizeChunkAssetsHooks',
stage: Compilation.PROCESS_ASSETS_STAGE_OPTIMIZE,
}, runner(compiler, compilation, this.opts));
}

@@ -23,0 +26,0 @@ );

{
"name": "mangle-css-class-webpack-plugin",
"version": "5.0.5",
"version": "5.0.6",
"license": "MIT",

@@ -13,10 +13,10 @@ "description": "Minifies and obfuscates the class names in your existing JavaScript, CSS, and HTML without any modern css modules.",

"devDependencies": {
"chalk": "^4.1.0",
"chalk": "^4.1.2",
"css-loader": "^3.6.0",
"html-loader": "^1.3.2",
"jasmine": "^3.7.0",
"jasmine": "^3.10.0",
"rimraf": "^3.0.2",
"standard-version": "^7.1.0",
"style-loader": "^2.0.0",
"webpack": "^5.64.0"
"webpack": "^5.65.0"
},

@@ -23,0 +23,0 @@ "dependencies": {},

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