@wp-playground/blueprints 0.9.26 → 0.9.27

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wp-playground/blueprints",
3
- "version": "0.9.26",
3
+ "version": "0.9.27",
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": "03453bf7ca06857dc31c496ded43ca2857023021",
24
+ "gitHead": "a0856a3e94aec6e95add6e828d66cc90ff47ff95",
25
25
  "engines": {
26
26
  "node": ">=18.18.0",
27
27
  "npm": ">=8.11.0"
@@ -30,14 +30,14 @@
30
30
  "ajv": "8.12.0",
31
31
  "comlink": "^4.4.1",
32
32
  "ini": "4.1.2",
33
- "@php-wasm/node-polyfills": "0.9.26",
34
- "@php-wasm/universal": "0.9.26",
35
- "@wp-playground/common": "0.9.26",
36
- "@php-wasm/node": "0.9.26",
37
- "@php-wasm/progress": "0.9.26",
38
- "@php-wasm/util": "0.9.26",
39
- "@php-wasm/logger": "0.9.26",
40
- "@wp-playground/wordpress": "0.9.26",
41
- "@php-wasm/scopes": "0.9.26"
33
+ "@php-wasm/node-polyfills": "0.9.27",
34
+ "@php-wasm/universal": "0.9.27",
35
+ "@wp-playground/common": "0.9.27",
36
+ "@php-wasm/node": "0.9.27",
37
+ "@php-wasm/progress": "0.9.27",
38
+ "@php-wasm/util": "0.9.27",
39
+ "@php-wasm/logger": "0.9.27",
40
+ "@wp-playground/wordpress": "0.9.27",
41
+ "@php-wasm/scopes": "0.9.27"
42
42
  }
43
43
  }
package/schema-readme.md CHANGED
@@ -1,9 +1,13 @@
1
- The JSON schema stored in this directory is used to validate the Blueprints
2
- and is autogenerated from the Blueprints TypeScript types.
1
+ The JSON schema stored in this directory describes how to validate
2
+ the Blueprints and is autogenerated from the Blueprints TypeScript types.
3
3
 
4
- Whenever the types are modified, the schema needs to be rebuilt using
5
- `nx build playground-blueprints` and then committed to the repository.
4
+ The Blueprint schema validator stored in this directory is used to validate
5
+ Blueprints and is autogenerated from the Blueprints JSON schema.
6
6
 
7
- Unfortunately, it is not auto-rebuilt in `npm run dev` mode as the
8
- `dts-bundle-generator` utility we use for type rollups does not support
7
+ Whenever the types are modified, the schema and validator need to be
8
+ rebuilt using `nx build playground-blueprints` and then committed to
9
+ the repository.
10
+
11
+ Unfortunately, they are not auto-rebuilt in `npm run dev` mode as the
12
+ `dts-bundle-generator` utility we use for type rollyps does not support
9
13
  watching for changes.