@plaudit/pnpm-plugin-plaudit-config 1.1.0 → 1.1.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 +7 -0
- package/README.md +11 -0
- package/package.json +1 -1
- package/pnpmfile.cjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ 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.1.1] - 2026-04-17
|
|
9
|
+
### Added
|
|
10
|
+
- Installation instructions to the readme
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Bumped the pinned version of `@wordpress/components` to `32.6.0`
|
|
14
|
+
|
|
8
15
|
## [1.1.0] - 2026-04-17
|
|
9
16
|
### Added
|
|
10
17
|
- Support for declaring patches
|
package/README.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
1
|
# Plaudit's PNPM Config
|
|
2
2
|
|
|
3
3
|
The basic config state that all Plaudit-managed PNPM projects should use
|
|
4
|
+
|
|
5
|
+
# Adding this to projects
|
|
6
|
+
## Plugins and Sites
|
|
7
|
+
1. Run: `theapp pnpm up`
|
|
8
|
+
2. All done!
|
|
9
|
+
|
|
10
|
+
## JS Libraries
|
|
11
|
+
1. Add the following to the scripts key in the package.json file: `"pnpm:devPreinstall": "pnpm add --config '@plaudit/pnpm-plugin-plaudit-config'"`
|
|
12
|
+
2. Run: `pnpm update`
|
|
13
|
+
3. Run: `rm -rf node_modules pnpm-lock.yaml && pnpm up`
|
|
14
|
+
4. All done!
|
package/package.json
CHANGED
package/pnpmfile.cjs
CHANGED
|
@@ -52,7 +52,7 @@ module.exports = {
|
|
|
52
52
|
"@types/wordpress__blocks": "15.10.2",
|
|
53
53
|
"@wordpress/block-editor": "15.16.0",
|
|
54
54
|
"@wordpress/blocks": "15.16.0",
|
|
55
|
-
"@wordpress/components": "
|
|
55
|
+
"@wordpress/components": "32.6.0",
|
|
56
56
|
"@wordpress/compose": "7.43.0",
|
|
57
57
|
"@wordpress/core-data": "7.43.0",
|
|
58
58
|
"@wordpress/data": "10.43.0",
|