@plaudit/webpack-extensions 2.88.0 → 2.88.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -60,6 +60,10 @@ 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.1] - 2026-03-30
64
+ ### Fixed
65
+ - The paths in package.json that were broken after switching to dist
66
+
63
67
  ## [2.88.0] - 2026-03-30
64
68
  ### Added
65
69
  - Support for explicitly setting the handle for block assets
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.1",
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
  },