@plaudit/pnpm-plugin-plaudit-config 1.0.3 → 1.0.4
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 +4 -0
- package/package.json +1 -1
- package/pnpmfile.cjs +4 -2
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.4] - 2026-04-16
|
|
9
|
+
### Fixed
|
|
10
|
+
- My code assuming that pnpm wouldn't idiotically clobber the output of config functions
|
|
11
|
+
|
|
8
12
|
## [1.0.3] - 2026-04-16
|
|
9
13
|
### Fixed
|
|
10
14
|
- The allowBuilds property being inconsistent at best (I hope)
|
package/package.json
CHANGED
package/pnpmfile.cjs
CHANGED
|
@@ -33,9 +33,9 @@ module.exports = {
|
|
|
33
33
|
...Object.fromEntries((config.onlyBuiltDependencies ?? []).map(dep => [dep, true])),
|
|
34
34
|
...Object.fromEntries((config.ignoredBuiltDependencies ?? []).map(dep => [dep, false])),
|
|
35
35
|
...config.allowBuilds,
|
|
36
|
+
...config.projectAllowBuilds,
|
|
36
37
|
},
|
|
37
38
|
overrides: {
|
|
38
|
-
...(config.overrides ?? {}),
|
|
39
39
|
"micromatch": "^4",
|
|
40
40
|
"react-autosize-textarea>react": "*",
|
|
41
41
|
"react-autosize-textarea>react-dom": "*",
|
|
@@ -51,7 +51,9 @@ module.exports = {
|
|
|
51
51
|
"@wordpress/hooks": "4.43.0",
|
|
52
52
|
"@wordpress/i18n": "6.16.0",
|
|
53
53
|
"@wordpress/icons": "12.1.0",
|
|
54
|
-
"date-fns": "^4.0.0"
|
|
54
|
+
"date-fns": "^4.0.0",
|
|
55
|
+
...config.overrides,
|
|
56
|
+
...config.projectOverrides
|
|
55
57
|
}
|
|
56
58
|
});
|
|
57
59
|
}
|