X Tutup
Skip to content

Commit 828722d

Browse files
bug fix, implement solution mentioned in issue #16045
1 parent 9fcaa24 commit 828722d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Compilation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1938,7 +1938,7 @@ BREAKING CHANGE: Asset processing hooks in Compilation has been merged into a si
19381938

19391939
// This avoids deadlocks for circular dependencies
19401940
if (this.processDependenciesQueue.isProcessing(module)) {
1941-
return callback();
1941+
return callback(null, module);
19421942
}
19431943

19441944
this.processModuleDependencies(module, err => {

0 commit comments

Comments
 (0)
X Tutup