@plaudit/webpack-extensions 3.5.0 → 3.5.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.
- package/CHANGELOG.md +18 -0
- package/dist/utils/common-config-helpers.js +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [3.5.2] - 2026-03-30
|
|
9
|
+
### Fixed
|
|
10
|
+
- The conflicting handle detection logic in block.json handling
|
|
11
|
+
- This comes from version `2.88.2`
|
|
12
|
+
|
|
13
|
+
## [3.5.1] - 2026-03-30
|
|
14
|
+
### Fixed
|
|
15
|
+
- The paths in package.json that were broken after switching to dist
|
|
16
|
+
- This comes from version `2.88.1`
|
|
17
|
+
|
|
8
18
|
## [3.5.0] - 2026-03-30
|
|
9
19
|
### Added
|
|
10
20
|
- Support for explicitly setting the handle for block assets
|
|
@@ -76,6 +86,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
76
86
|
- Legacy PostCSS features that have been integrated into modern CSS
|
|
77
87
|
- `@extends` support
|
|
78
88
|
|
|
89
|
+
## [2.88.2] - 2026-03-30
|
|
90
|
+
### Fixed
|
|
91
|
+
- The conflicting handle detection logic in block.json handling
|
|
92
|
+
|
|
93
|
+
## [2.88.1] - 2026-03-30
|
|
94
|
+
### Fixed
|
|
95
|
+
- The paths in package.json that were broken after switching to dist
|
|
96
|
+
|
|
79
97
|
## [2.88.0] - 2026-03-30
|
|
80
98
|
### Added
|
|
81
99
|
- Support for explicitly setting the handle for block assets
|
|
@@ -305,7 +305,7 @@ function resolveEntryFromDirectory(commonConfig, srcRoot, dest) {
|
|
|
305
305
|
const perAssetPathGroupedEntrypoints = groupEntrypointsByAssetFile(allEntrypoints.flatMap(e => e[0]), e => e[0]);
|
|
306
306
|
const conflictingHandles = Object.values(seenExplicitHandles)
|
|
307
307
|
.flatMap(handles => Object.entries(handles))
|
|
308
|
-
.filter(([, sources]) => sources.length >
|
|
308
|
+
.filter(([, sources]) => sources.length > 1)
|
|
309
309
|
.map(([handle, sources]) => `${handle}: ${sources.join(", ")}`);
|
|
310
310
|
if (conflictingHandles.length > 0) {
|
|
311
311
|
throw (0, shared_1.newCleanWebpackError)("Encountered conflicting explicitly-set handles:\n" + conflictingHandles.join("\n"));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plaudit/webpack-extensions",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.2",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
5
5
|
"files": [
|
|
6
6
|
"/dist",
|
|
@@ -10,20 +10,20 @@
|
|
|
10
10
|
"USER-GUIDE.md"
|
|
11
11
|
],
|
|
12
12
|
"exports": {
|
|
13
|
-
"./wordpress-scripts-wrapper": "./
|
|
14
|
-
"./location-encoding-filename-parser": "./
|
|
15
|
-
"./shared": "./
|
|
13
|
+
"./wordpress-scripts-wrapper": "./dist/wordpress-scripts-wrapper.js",
|
|
14
|
+
"./location-encoding-filename-parser": "./dist/utils/location-encoding-filename-parser.js",
|
|
15
|
+
"./shared": "./dist/shared.js"
|
|
16
16
|
},
|
|
17
17
|
"typesVersions": {
|
|
18
18
|
"*": {
|
|
19
19
|
"wordpress-scripts-wrapper": [
|
|
20
|
-
"
|
|
20
|
+
"dist/wordpress-scripts-wrapper.d.ts"
|
|
21
21
|
],
|
|
22
22
|
"location-encoding-filename-parser": [
|
|
23
|
-
"
|
|
23
|
+
"dist/location-encoding-filename-parser.d.ts"
|
|
24
24
|
],
|
|
25
25
|
"shared": [
|
|
26
|
-
"
|
|
26
|
+
"dist/shared.d.ts"
|
|
27
27
|
]
|
|
28
28
|
}
|
|
29
29
|
},
|