MCPcopy Create free account
hub / github.com/aackerman/circular-dependency-plugin / constructor

Method constructor

index.js:7–16  ·  view source on GitHub ↗
(options)

Source from the content-addressed store, hash-verified

5
6class CircularDependencyPlugin {
7 constructor(options) {
8 this.options = extend({
9 exclude: new RegExp('$^'),
10 include: new RegExp('.*'),
11 failOnError: false,
12 allowAsyncCycles: false,
13 onDetected: false,
14 cwd: process.cwd()
15 }, options)
16 }
17
18 apply(compiler) {
19 let plugin = this

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected