@plaudit/pnpm-plugin-plaudit-config 1.0.0 → 1.0.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.
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
+ ## [1.0.1] - 2026-04-15
9
+ ### Changed
10
+ - Switched to overrides to fix WordPress dependency pinning breaking a bunch of unexpected things
11
+
8
12
  ## [1.0.0] - 2026-04-15
9
13
  ### Added
10
14
  - 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.1",
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,20 @@ 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",
39
52
  };
40
53
  return config;
41
54
  }