Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

circular-dependency-plugin

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

circular-dependency-plugin - npm Package Compare versions

Comparing version 5.2.0 to 5.2.1

8

CHANGELOG.md
# Changelog
## 5.2.1
* Fixed an issue where modules that do not include themselves were marked as having circular dependencies
## 5.2.0
* Webpack 5 compatibility
## 5.1.0

@@ -4,0 +12,0 @@

@@ -84,2 +84,9 @@ let path = require('path')

for (let dependency of currentModule.dependencies) {
if (
dependency.constructor &&
dependency.constructor.name === 'CommonJsSelfReferenceDependency'
) {
continue
}
let depModule = null

@@ -86,0 +93,0 @@ if (compilation.moduleGraph) {

4

package.json

@@ -8,3 +8,3 @@ {

"webpack": "^4.0.1",
"webpack-next": "npm:webpack@^5.0.0-alpha.19"
"webpack5": "npm:webpack@^5.0.0"
},

@@ -15,3 +15,3 @@ "peerDependencies": {

"description": "Detect modules with circular dependencies when bundling with webpack.",
"version": "5.2.0",
"version": "5.2.1",
"engines": {

@@ -18,0 +18,0 @@ "node": ">=6.0.0"

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