You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/content/guides/package-exports.mdx
+2-2
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,7 @@ Example:
67
67
68
68
Here `package/things/apple` might be found in `.../package/good-things/apple` or in `.../package/bad-things/apple`.
69
69
70
-
W> As of version 5.93.1, webpack's behavior has been updated to align with Node's behavior. It now selects the first valid path without attempting further resolutions and throws an error if the path cannot be resolved.
70
+
W> As of version 5.94.0, webpack's behavior has been updated to align with Node's behavior. It now selects the first valid path without attempting further resolutions and throws an error if the path cannot be resolved.
71
71
72
72
For example, given the following configuration:
73
73
@@ -79,7 +79,7 @@ For example, given the following configuration:
79
79
}
80
80
```
81
81
82
-
Webpack 5.93.1+ will now throw an error since `non-existent.js` is not found while the previous behavior would have resolved to `existent.js`.
82
+
Webpack 5.94.0+ will now throw an error since `non-existent.js` is not found while the previous behavior would have resolved to `existent.js`.
0 commit comments