@plaudit/webpack-extensions 2.88.0 → 2.88.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 CHANGED
@@ -60,6 +60,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
60
60
  - Legacy PostCSS features that have been integrated into modern CSS
61
61
  - `@extends` support
62
62
 
63
+ ## [2.88.2] - 2026-03-30
64
+ ### Fixed
65
+ - The conflicting handle detection logic in block.json handling
66
+
67
+ ## [2.88.1] - 2026-03-30
68
+ ### Fixed
69
+ - The paths in package.json that were broken after switching to dist
70
+
63
71
  ## [2.88.0] - 2026-03-30
64
72
  ### Added
65
73
  - 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 > 0)
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": "2.88.0",
3
+ "version": "2.88.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": "./build/wordpress-scripts-wrapper.js",
14
- "./location-encoding-filename-parser": "./build/utils/location-encoding-filename-parser.js",
15
- "./shared": "./build/shared.js"
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
- "build/wordpress-scripts-wrapper.d.ts"
20
+ "dist/wordpress-scripts-wrapper.d.ts"
21
21
  ],
22
22
  "location-encoding-filename-parser": [
23
- "build/location-encoding-filename-parser.d.ts"
23
+ "dist/location-encoding-filename-parser.d.ts"
24
24
  ],
25
25
  "shared": [
26
- "build/shared.d.ts"
26
+ "dist/shared.d.ts"
27
27
  ]
28
28
  }
29
29
  },