(compilation, tracer)
| 465 | * @param {Trace} tracer tracer |
| 466 | */ |
| 467 | const interceptAllJavascriptModulesPluginHooks = (compilation, tracer) => { |
| 468 | interceptAllHooksFor( |
| 469 | { |
| 470 | hooks: |
| 471 | require("../javascript/JavascriptModulesPlugin").getCompilationHooks( |
| 472 | compilation |
| 473 | ) |
| 474 | }, |
| 475 | tracer, |
| 476 | "JavascriptModulesPlugin" |
| 477 | ); |
| 478 | }; |
| 479 | |
| 480 | /** |
| 481 | * Intercept all css modules plugin hooks. |
no test coverage detected