@plaudit/webpack-extensions 3.5.0 → 3.5.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 +8 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -5,6 +5,10 @@ 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.1] - 2026-03-30
9
+ ### Fixed
10
+ - The paths in package.json that were broken after switching to dist
11
+
8
12
  ## [3.5.0] - 2026-03-30
9
13
  ### Added
10
14
  - Support for explicitly setting the handle for block assets
@@ -76,6 +80,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
76
80
  - Legacy PostCSS features that have been integrated into modern CSS
77
81
  - `@extends` support
78
82
 
83
+ ## [2.88.1] - 2026-03-30
84
+ ### Fixed
85
+ - The paths in package.json that were broken after switching to dist
86
+
79
87
  ## [2.88.0] - 2026-03-30
80
88
  ### Added
81
89
  - 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": "3.5.0",
3
+ "version": "3.5.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
  },