@wp-playground/blueprints 0.5.1 → 0.5.3

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.
@@ -479,6 +479,11 @@
479
479
  "additionalProperties": {},
480
480
  "description": "The constants to define"
481
481
  },
482
+ "method": {
483
+ "type": "string",
484
+ "enum": ["rewrite-wp-config", "define-before-run"],
485
+ "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."
486
+ },
482
487
  "virtualize": {
483
488
  "type": "boolean",
484
489
  "deprecated": "This option is noop and will be removed in a future version.\nThis option is only kept in here to avoid breaking Blueprint schema validation\nfor existing apps using this option."