@plaudit/webpack-extensions 2.31.0 → 2.31.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.
|
@@ -263,18 +263,14 @@ function makeDependencyExtractionPlugin(externals) {
|
|
|
263
263
|
else if (possibleExternal !== undefined) {
|
|
264
264
|
return possibleExternal['import'];
|
|
265
265
|
}
|
|
266
|
-
|
|
267
|
-
return undefined;
|
|
268
|
-
}
|
|
266
|
+
return undefined;
|
|
269
267
|
},
|
|
270
268
|
requestToHandle(request) {
|
|
271
269
|
const possibleExternal = resolvePossibleExternal(request);
|
|
272
270
|
if (possibleExternal !== undefined && typeof possibleExternal !== 'string') {
|
|
273
271
|
return possibleExternal.handle;
|
|
274
272
|
}
|
|
275
|
-
|
|
276
|
-
return request;
|
|
277
|
-
}
|
|
273
|
+
return undefined;
|
|
278
274
|
}
|
|
279
275
|
});
|
|
280
276
|
}
|