@plaudit/webpack-extensions 3.5.1 → 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 CHANGED
@@ -5,9 +5,15 @@ 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
+
8
13
  ## [3.5.1] - 2026-03-30
9
14
  ### Fixed
10
15
  - The paths in package.json that were broken after switching to dist
16
+ - This comes from version `2.88.1`
11
17
 
12
18
  ## [3.5.0] - 2026-03-30
13
19
  ### Added
@@ -80,6 +86,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
80
86
  - Legacy PostCSS features that have been integrated into modern CSS
81
87
  - `@extends` support
82
88
 
89
+ ## [2.88.2] - 2026-03-30
90
+ ### Fixed
91
+ - The conflicting handle detection logic in block.json handling
92
+
83
93
  ## [2.88.1] - 2026-03-30
84
94
  ### Fixed
85
95
  - The paths in package.json that were broken after switching to dist
@@ -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": "3.5.1",
3
+ "version": "3.5.2",
4
4
  "license": "SEE LICENSE IN LICENSE.md",
5
5
  "files": [
6
6
  "/dist",