@wp-playground/blueprints 0.6.7 → 0.6.9
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/blueprint-schema.json +188 -97
- package/index.cjs +17 -17
- package/index.d.ts +34 -9
- package/index.js +357 -265
- package/lib/steps/activate-theme.d.ts +1 -2
- package/lib/steps/wp-cli.d.ts +1 -1
- package/package.json +2 -2
- package/schema-readme.md +1 -1
package/lib/steps/wp-cli.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wp-playground/blueprints",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.9",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
6
6
|
"import": "./index.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"access": "public",
|
|
22
22
|
"directory": "../../../dist/packages/playground/blueprints"
|
|
23
23
|
},
|
|
24
|
-
"gitHead": "
|
|
24
|
+
"gitHead": "f6b98ad6d05617ee8cb1234c21318fdde17a6e56",
|
|
25
25
|
"engines": {
|
|
26
26
|
"node": ">=18.18.2",
|
|
27
27
|
"npm": ">=8.11.0"
|
package/schema-readme.md
CHANGED
|
@@ -5,5 +5,5 @@ Whenever the types are modified, the schema needs to be rebuilt using
|
|
|
5
5
|
`nx build playground-blueprints` and then committed to the repository.
|
|
6
6
|
|
|
7
7
|
Unfortunately, it is not auto-rebuilt in `npm run dev` mode as the
|
|
8
|
-
`dts-bundle-generator` utility we use for type
|
|
8
|
+
`dts-bundle-generator` utility we use for type rollups does not support
|
|
9
9
|
watching for changes.
|