I get an deprecation warning when using this plugin with webpack 5.42.0:
[DEP_WEBPACK_COMPILATION_CACHE] DeprecationWarning: Compilation.cache was removed in favor of Compilation.getCache()
compilation.cache seems to be used multiple times within loader.js:
|
if (compilation.cache) { |
|
if (!compilation.cache[subCache]) compilation.cache[subCache] = {}; |
|
compilation.cache = compilation.cache[subCache]; |
I get an deprecation warning when using this plugin with webpack 5.42.0:
compilation.cacheseems to be used multiple times withinloader.js:worker-plugin/src/loader.js
Lines 74 to 76 in 2225c95