webpack 5.88.1 → 5.88.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of webpack might be problematic. Click here for more details.
@@ -109,6 +109,9 @@ CssLocalIdentifierDependency.Template = class CssLocalIdentifierDependencyTempla
|
|
109
109
|
const used = moduleGraph
|
110
110
|
.getExportInfo(module, dep.name)
|
111
111
|
.getUsedName(dep.name, runtime);
|
112
|
+
|
113
|
+
if (!used) return;
|
114
|
+
|
112
115
|
const moduleId = chunkGraph.getModuleId(module);
|
113
116
|
const identifier =
|
114
117
|
dep.prefix +
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "webpack",
|
3
|
-
"version": "5.88.
|
3
|
+
"version": "5.88.2",
|
4
4
|
"author": "Tobias Koppers @sokra",
|
5
5
|
"description": "Packs ECMAScript/CommonJs/AMD modules for the browser. Allows you to split your codebase into multiple bundles, which can be loaded on demand. Supports loaders to preprocess files, i.e. json, jsx, es7, css, less, ... and your custom stuff.",
|
6
6
|
"license": "MIT",
|