@wp-playground/blueprints 0.7.19 → 0.7.20
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 +2 -2
- package/index.cjs +123 -102
- package/index.d.ts +19 -30
- package/index.js +1118 -1067
- package/lib/steps/define-site-url.d.ts +3 -3
- package/lib/steps/define-wp-config-consts.d.ts +3 -2
- package/lib/steps/enable-multisite.d.ts +1 -1
- package/lib/steps/import-wordpress-files.d.ts +2 -2
- package/lib/steps/login.d.ts +2 -2
- package/lib/steps/request.d.ts +1 -1
- package/lib/steps/run-php-with-options.d.ts +1 -1
- package/lib/steps/run-php.d.ts +1 -0
- package/lib/steps/site-data.d.ts +3 -3
- package/lib/steps/wp-cli.d.ts +1 -1
- package/package.json +2 -2
- package/lib/utils/run-php-with-zip-functions.d.ts +0 -2
package/blueprint-schema.json
CHANGED
|
@@ -505,7 +505,7 @@
|
|
|
505
505
|
"rewrite-wp-config",
|
|
506
506
|
"define-before-run"
|
|
507
507
|
],
|
|
508
|
-
"description": "The method of defining the constants. Possible values are:\n\n- rewrite-wp-config: Default. Rewrites the wp-config.php file to explicitly call define() with the requested name and value. This method alters the file on the disk, but it doesn't conflict with existing define() calls in wp-config.php.\n- define-before-run: Defines the constant before running the requested script. It doesn't alter any files on the disk, but constants defined this way may conflict with existing define() calls in wp-config.php."
|
|
508
|
+
"description": "The method of defining the constants in wp-config.php. Possible values are:\n\n- rewrite-wp-config: Default. Rewrites the wp-config.php file to explicitly call define() with the requested name and value. This method alters the file on the disk, but it doesn't conflict with existing define() calls in wp-config.php.\n\n- define-before-run: Defines the constant before running the requested script. It doesn't alter any files on the disk, but constants defined this way may conflict with existing define() calls in wp-config.php."
|
|
509
509
|
},
|
|
510
510
|
"virtualize": {
|
|
511
511
|
"type": "boolean",
|
|
@@ -972,7 +972,7 @@
|
|
|
972
972
|
},
|
|
973
973
|
"options": {
|
|
974
974
|
"$ref": "#/definitions/PHPRunOptions",
|
|
975
|
-
"description": "Run options (See /wordpress-playground/api/universal/interface/PHPRunOptions)"
|
|
975
|
+
"description": "Run options (See /wordpress-playground/api/universal/interface/PHPRunOptions/))"
|
|
976
976
|
}
|
|
977
977
|
},
|
|
978
978
|
"required": [
|