@plaudit/pnpm-plugin-plaudit-config 1.0.0 → 1.0.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,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.0.2] - 2026-04-15
9
+ ### Added
10
+ - A pin to eliminate another dependency conflict message caused by WordPress
11
+
12
+ ## [1.0.1] - 2026-04-15
13
+ ### Changed
14
+ - Switched to overrides to fix WordPress dependency pinning breaking a bunch of unexpected things
15
+
8
16
  ## [1.0.0] - 2026-04-15
9
17
  ### Added
10
18
  - Default `allowBuilds` and `overrides` values
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plaudit/pnpm-plugin-plaudit-config",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "license": "SEE LICENSE IN LICENSE.md",
5
5
  "files": [
6
6
  "./pnpmfile.cjs",
package/pnpmfile.cjs CHANGED
@@ -1,5 +1,5 @@
1
1
  const dependencyKeys = ['dependencies', 'devDependencies', 'peerDependencies', 'optionalDependencies'];
2
- const globalForcePinDependenciesRegex = /^@wordpress\//;
2
+ const globalForcePinDependenciesRegex = false;///^@wordpress\//;
3
3
 
4
4
  let rootPkg = undefined;
5
5
  module.exports = {
@@ -35,7 +35,21 @@ module.exports = {
35
35
  ...(config.overrides ?? {}),
36
36
  "micromatch": "^4",
37
37
  "react-autosize-textarea>react": "*",
38
- "react-autosize-textarea>react-dom": "*"
38
+ "react-autosize-textarea>react-dom": "*",
39
+
40
+ //Temporary pinnings because WordPress bricked their typedefs
41
+ "@wordpress/block-editor": "15.16.0",
42
+ "@wordpress/blocks": "15.16.0",
43
+ "@wordpress/components": "30.9.0",
44
+ "@wordpress/compose": "7.43.0",
45
+ "@wordpress/core-data": "7.43.0",
46
+ "@wordpress/data": "10.43.0",
47
+ "@wordpress/editor": "14.43.0",
48
+ "@wordpress/element": "6.43.0",
49
+ "@wordpress/hooks": "4.43.0",
50
+ "@wordpress/i18n": "6.16.0",
51
+ "@wordpress/icons": "12.1.0",
52
+ "date-fns": "^4.0.0"
39
53
  };
40
54
  return config;
41
55
  }