webpack 5.59.0 → 5.59.1
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.
package/lib/FileSystemInfo.js
CHANGED
@@ -1988,7 +1988,7 @@ class FileSystemInfo {
|
|
1988
1988
|
for (const managedPath of this.managedPathsRegExps) {
|
1989
1989
|
const match = managedPath.exec(path);
|
1990
1990
|
if (match) {
|
1991
|
-
const managedItem = getManagedItem(
|
1991
|
+
const managedItem = getManagedItem(match[1], path);
|
1992
1992
|
if (managedItem) {
|
1993
1993
|
managedItems.add(managedItem);
|
1994
1994
|
managedSet.add(path);
|
@@ -2962,7 +2962,7 @@ class FileSystemInfo {
|
|
2962
2962
|
for (const managedPath of this.managedPathsRegExps) {
|
2963
2963
|
const match = managedPath.exec(path);
|
2964
2964
|
if (match) {
|
2965
|
-
const managedItem = getManagedItem(
|
2965
|
+
const managedItem = getManagedItem(match[1], path);
|
2966
2966
|
if (managedItem) {
|
2967
2967
|
// construct timestampHash from managed info
|
2968
2968
|
return this.managedItemQueue.add(managedItem, (err, info) => {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "webpack",
|
3
|
-
"version": "5.59.
|
3
|
+
"version": "5.59.1",
|
4
4
|
"author": "Tobias Koppers @sokra",
|
5
5
|
"description": "Packs CommonJs/AMD modules for the browser. Allows to split your codebase into multiple bundles, which can be loaded on demand. Support loaders to preprocess files, i.e. json, jsx, es7, css, less, ... and your custom stuff.",
|
6
6
|
"license": "MIT",
|