@wp-playground/blueprints 0.2.0 → 0.3.0
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 +17 -0
- package/index.cjs +352 -34
- package/index.js +2425 -2013
- package/lib/blueprint.d.ts +5 -1
- package/lib/compile.d.ts +4 -5
- package/lib/steps/activate-plugin.d.ts +9 -0
- package/lib/steps/activate-theme.d.ts +9 -0
- package/lib/steps/apply-wordpress-patches/index.d.ts +33 -0
- package/lib/steps/cp.d.ts +26 -0
- package/lib/steps/handlers.d.ts +10 -1
- package/lib/steps/import-export.d.ts +25 -0
- package/lib/steps/index.d.ts +10 -1
- package/lib/steps/mkdir.d.ts +22 -0
- package/lib/steps/mv.d.ts +26 -0
- package/lib/steps/request.d.ts +33 -0
- package/lib/steps/rm.d.ts +23 -0
- package/lib/steps/rmdir.d.ts +23 -0
- package/lib/steps/run-php-with-options.d.ts +30 -0
- package/lib/steps/run-php.d.ts +23 -0
- package/lib/steps/set-php-ini-entry.d.ts +25 -0
- package/lib/steps/write-file.d.ts +26 -0
- package/package.json +2 -2
- package/lib/steps/client-methods.d.ts +0 -247
package/blueprint-schema.json
CHANGED
|
@@ -33,6 +33,13 @@
|
|
|
33
33
|
"additionalProperties": false,
|
|
34
34
|
"description": "The preferred PHP and WordPress versions to use."
|
|
35
35
|
},
|
|
36
|
+
"phpExtensionBundles": {
|
|
37
|
+
"type": "array",
|
|
38
|
+
"items": {
|
|
39
|
+
"$ref": "#/definitions/SupportedPHPExtensionBundle"
|
|
40
|
+
},
|
|
41
|
+
"description": "The PHP extensions to use."
|
|
42
|
+
},
|
|
36
43
|
"steps": {
|
|
37
44
|
"type": "array",
|
|
38
45
|
"items": {
|
|
@@ -77,6 +84,10 @@
|
|
|
77
84
|
"5.6"
|
|
78
85
|
]
|
|
79
86
|
},
|
|
87
|
+
"SupportedPHPExtensionBundle": {
|
|
88
|
+
"type": "string",
|
|
89
|
+
"const": "kitchen-sink"
|
|
90
|
+
},
|
|
80
91
|
"StepDefinition": {
|
|
81
92
|
"type": "object",
|
|
82
93
|
"discriminator": {
|
|
@@ -179,6 +190,12 @@
|
|
|
179
190
|
},
|
|
180
191
|
"disableWpNewBlogNotification": {
|
|
181
192
|
"type": "boolean"
|
|
193
|
+
},
|
|
194
|
+
"makeEditorFrameControlled": {
|
|
195
|
+
"type": "boolean"
|
|
196
|
+
},
|
|
197
|
+
"prepareForRunningInsideWebBrowser": {
|
|
198
|
+
"type": "boolean"
|
|
182
199
|
}
|
|
183
200
|
},
|
|
184
201
|
"required": ["step"]
|