webpack 5.99.2 → 5.99.3
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.
@@ -2200,6 +2200,9 @@ class JavascriptParser extends Parser {
|
|
2200
2200
|
this.inExecutedPath(false, () => {
|
2201
2201
|
this.walkExpression(statement.test);
|
2202
2202
|
this.walkNestedStatement(statement.consequent);
|
2203
|
+
});
|
2204
|
+
|
2205
|
+
this.inExecutedPath(true, () => {
|
2203
2206
|
if (statement.alternate) {
|
2204
2207
|
this.walkNestedStatement(statement.alternate);
|
2205
2208
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "webpack",
|
3
|
-
"version": "5.99.
|
3
|
+
"version": "5.99.3",
|
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",
|