We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55fb1da commit 5649b9cCopy full SHA for 5649b9c
lib/dependencies/ContextDependency.js
@@ -14,6 +14,7 @@ class ContextDependency extends Dependency {
14
super();
15
this.options = options;
16
this.userRequest = this.options.request;
17
+ this.critical = false;
18
this.hadGlobalOrStickyRegExp = false;
19
if (this.options.regExp.global || this.options.regExp.sticky) {
20
this.options.regExp = null;
@@ -47,6 +48,7 @@ class ContextDependency extends Dependency {
47
48
}
49
50
51
+// TODO remove in webpack 5
52
Object.defineProperty(ContextDependency.prototype, "async", {
53
configurable: false,
54
get() {
0 commit comments