@plaudit/pnpm-plugin-plaudit-config 1.4.0 → 1.5.0
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 +8 -0
- package/package.json +3 -3
- package/pnpmfile.cjs +5 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,14 @@ 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
|
+
## [1.5.0] - 2026-05-01
|
|
9
|
+
### Added
|
|
10
|
+
- PNPM v11 compatibility
|
|
11
|
+
|
|
12
|
+
## [1.4.1] - 2026-04-30
|
|
13
|
+
### Fixed
|
|
14
|
+
- The `date-fns` selector
|
|
15
|
+
|
|
8
16
|
## [1.4.0] - 2026-04-30
|
|
9
17
|
### Added
|
|
10
18
|
- Overrides for some other outdated WordPress dependencies that don't prevent builds
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plaudit/pnpm-plugin-plaudit-config",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
5
5
|
"files": [
|
|
6
6
|
"./patches",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
],
|
|
12
12
|
"sideEffects": false,
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"@pnpm/hooks.pnpmfile": "^1100.0.
|
|
15
|
-
"@pnpm/types": "^
|
|
14
|
+
"@pnpm/hooks.pnpmfile": "^1100.0.4",
|
|
15
|
+
"@pnpm/types": "^1101.0.0",
|
|
16
16
|
"typescript": "^6.0.3"
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
package/pnpmfile.cjs
CHANGED
|
@@ -57,7 +57,7 @@ module.exports = {
|
|
|
57
57
|
"@radix-ui/react-slot@<1.2.4": "^1.2.4",
|
|
58
58
|
"@radix-ui/react-primitive@<2.1.4": "^2.1.4",
|
|
59
59
|
"@wordpress/components@<33.0.0": "^33.0.0",
|
|
60
|
-
"date-fns
|
|
60
|
+
"date-fns@<4.0.0": "^4.0.0",
|
|
61
61
|
"diff@<8.0.4": "^8.0.4",
|
|
62
62
|
"framer-motion@<12.38.0": "^12.38.0",
|
|
63
63
|
"react-is@<18.3.1": "^18.3.1",
|
|
@@ -70,7 +70,10 @@ module.exports = {
|
|
|
70
70
|
...config.patchedDependencies,
|
|
71
71
|
...mergeableConfig.projectPatchedDependencies
|
|
72
72
|
},
|
|
73
|
-
allowUnusedPatches: true
|
|
73
|
+
allowUnusedPatches: true,
|
|
74
|
+
dedupePeers: true,
|
|
75
|
+
minimumReleaseAgeExclude: ["@plaudit/*"],
|
|
76
|
+
nodeLinker: "hoisted"
|
|
74
77
|
});
|
|
75
78
|
}
|
|
76
79
|
},
|