@wp-playground/blueprints 3.1.21 → 3.1.22
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-validator.js +431 -213
- package/blueprint-schema.json +14 -2
- package/index.cjs +56 -45
- package/index.cjs.map +1 -1
- package/index.js +2586 -2433
- package/index.js.map +1 -1
- package/lib/v1/types.d.ts +8 -3
- package/package.json +14 -13
package/lib/v1/types.d.ts
CHANGED
|
@@ -63,10 +63,15 @@ export type BlueprintV1Declaration = {
|
|
|
63
63
|
*/
|
|
64
64
|
php: BlueprintPHPVersion | 'latest';
|
|
65
65
|
/**
|
|
66
|
-
* The preferred WordPress version to use
|
|
67
|
-
*
|
|
66
|
+
* The preferred WordPress version to use, or `false` to boot a
|
|
67
|
+
* PHP-only Playground without downloading or installing WordPress.
|
|
68
|
+
* If not specified, the latest supported version will be used.
|
|
69
|
+
*
|
|
70
|
+
* When set to `false`, WordPress-specific Blueprint fields
|
|
71
|
+
* (`plugins`, `siteOptions`, `login`, and WordPress-only steps)
|
|
72
|
+
* are rejected at compile time.
|
|
68
73
|
*/
|
|
69
|
-
wp: string | 'latest';
|
|
74
|
+
wp: string | 'latest' | false;
|
|
70
75
|
};
|
|
71
76
|
features?: {
|
|
72
77
|
/** Should boot with support for Intl dynamic extension */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wp-playground/blueprints",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.22",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
6
6
|
"import": "./index.js",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"access": "public",
|
|
26
26
|
"directory": "../../../dist/packages/playground/blueprints"
|
|
27
27
|
},
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "04c986b63dd56fe74e4ed0cf04d00cae7ac050bf",
|
|
29
29
|
"engines": {
|
|
30
30
|
"node": ">=20.10.0",
|
|
31
31
|
"npm": ">=10.2.3"
|
|
@@ -47,23 +47,24 @@
|
|
|
47
47
|
"octokit": "3.1.2",
|
|
48
48
|
"pako": "1.0.10",
|
|
49
49
|
"pify": "2.3.0",
|
|
50
|
+
"playwright": "1.55.1",
|
|
50
51
|
"readable-stream": "3.6.2",
|
|
51
52
|
"sha.js": "2.4.12",
|
|
52
53
|
"simple-get": "4.0.1",
|
|
53
54
|
"wasm-feature-detect": "1.8.0",
|
|
54
55
|
"ws": "8.18.0",
|
|
55
56
|
"yargs": "17.7.2",
|
|
56
|
-
"@wp-playground/storage": "3.1.
|
|
57
|
-
"@php-wasm/util": "3.1.
|
|
58
|
-
"@wp-playground/common": "3.1.
|
|
59
|
-
"@php-wasm/universal": "3.1.
|
|
60
|
-
"@php-wasm/node": "3.1.
|
|
61
|
-
"@wp-playground/wordpress": "3.1.
|
|
62
|
-
"@php-wasm/logger": "3.1.
|
|
63
|
-
"@php-wasm/scopes": "3.1.
|
|
64
|
-
"@php-wasm/progress": "3.1.
|
|
65
|
-
"@php-wasm/stream-compression": "3.1.
|
|
66
|
-
"@php-wasm/web-service-worker": "3.1.
|
|
57
|
+
"@wp-playground/storage": "3.1.22",
|
|
58
|
+
"@php-wasm/util": "3.1.22",
|
|
59
|
+
"@wp-playground/common": "3.1.22",
|
|
60
|
+
"@php-wasm/universal": "3.1.22",
|
|
61
|
+
"@php-wasm/node": "3.1.22",
|
|
62
|
+
"@wp-playground/wordpress": "3.1.22",
|
|
63
|
+
"@php-wasm/logger": "3.1.22",
|
|
64
|
+
"@php-wasm/scopes": "3.1.22",
|
|
65
|
+
"@php-wasm/progress": "3.1.22",
|
|
66
|
+
"@php-wasm/stream-compression": "3.1.22",
|
|
67
|
+
"@php-wasm/web-service-worker": "3.1.22"
|
|
67
68
|
},
|
|
68
69
|
"packageManager": "npm@10.9.2",
|
|
69
70
|
"overrides": {
|