Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aackerman/circular-dependency-plugin
Detect circular dependencies in modules compiled with Webpack
https://github.com/aackerman/circular-dependency-plugin
javascript webpack
Last synced: 7 days ago
JSON representation
Detect circular dependencies in modules compiled with Webpack
- Host: GitHub
- URL: https://github.com/aackerman/circular-dependency-plugin
- Owner: aackerman
- License: isc
- Created: 2015-03-26T00:43:50.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-04-26T18:31:34.000Z (over 1 year ago)
- Last Synced: 2024-04-14T13:19:27.279Z (7 months ago)
- Topics: javascript, webpack
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/circular-dependency-plugin
- Size: 825 KB
- Stars: 901
- Watchers: 6
- Forks: 43
- Open Issues: 37
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome - circular-dependency-plugin - Detect circular dependencies in modules compiled with Webpack (JavaScript)
- awesome-list - circular-dependency-plugin
README
## Circular Dependency Plugin
Detect modules with circular dependencies when bundling with webpack.
Circular dependencies are often a necessity in complex software, the presence of a circular dependency doesn't always imply a bug, but in the case where you believe a bug exists, this module may help find it.
### Webpack Versions
The latest major version of this plugin `5`, supports webpack `4.0.1` and greater as a peer dependency. Major version `4` of this plugin and below are intended to support webpack `3.x.x` and below as a peer dependency.
### Basic Usage
```js
// webpack.config.js
const CircularDependencyPlugin = require('circular-dependency-plugin')module.exports = {
entry: "./src/index",
plugins: [
new CircularDependencyPlugin({
// exclude detection of files based on a RegExp
exclude: /a\.js|node_modules/,
// include specific files based on a RegExp
include: /dir/,
// add errors to webpack instead of warnings
failOnError: true,
// allow import cycles that include an asyncronous import,
// e.g. via import(/* webpackMode: "weak" */ './file.js')
allowAsyncCycles: false,
// set the current working directory for displaying module paths
cwd: process.cwd(),
})
]
}
```### Advanced Usage
```js
// webpack.config.js
const CircularDependencyPlugin = require('circular-dependency-plugin')module.exports = {
entry: "./src/index",
plugins: [
new CircularDependencyPlugin({
// `onStart` is called before the cycle detection starts
onStart({ compilation }) {
console.log('start detecting webpack modules cycles');
},
// `onDetected` is called for each module that is cyclical
onDetected({ module: webpackModuleRecord, paths, compilation }) {
// `paths` will be an Array of the relative module paths that make up the cycle
// `module` will be the module record generated by webpack that caused the cycle
compilation.errors.push(new Error(paths.join(' -> ')))
},
// `onEnd` is called before the cycle detection ends
onEnd({ compilation }) {
console.log('end detecting webpack modules cycles');
},
})
]
}
```If you have some number of cycles and want to fail if any new ones are
introduced, you can use the life cycle methods to count and fail when the
count is exceeded. (Note if you care about detecting a cycle being replaced by
another, this won't catch that.)```js
// webpack.config.js
const CircularDependencyPlugin = require('circular-dependency-plugin')const MAX_CYCLES = 5;
let numCyclesDetected = 0;module.exports = {
entry: "./src/index",
plugins: [
new CircularDependencyPlugin({
onStart({ compilation }) {
numCyclesDetected = 0;
},
onDetected({ module: webpackModuleRecord, paths, compilation }) {
numCyclesDetected++;
compilation.warnings.push(new Error(paths.join(' -> ')))
},
onEnd({ compilation }) {
if (numCyclesDetected > MAX_CYCLES) {
compilation.errors.push(new Error(
`Detected ${numCyclesDetected} cycles which exceeds configured limit of ${MAX_CYCLES}`
));
}
},
})
]
}
```### Maintenance
This module is maintained despite few changes being necessary, please open issues if you find any bugs relating to integration with webpack core.