diff --git a/packages/playground/blueprints/public/blueprint-schema.json b/packages/playground/blueprints/public/blueprint-schema.json index fda70d8e6b..21b0f46dd0 100644 --- a/packages/playground/blueprints/public/blueprint-schema.json +++ b/packages/playground/blueprints/public/blueprint-schema.json @@ -80,8 +80,7 @@ "additionalProperties": { "type": "string" }, - "description": "PHP Constants to define on every request", - "deprecated": "This experimental option will change without warning.\nUse `steps` instead." + "description": "PHP Constants to define on every request" }, "plugins": { "type": "array", @@ -95,8 +94,7 @@ } ] }, - "description": "WordPress plugins to install and activate", - "deprecated": "This experimental option will change without warning.\nUse `steps` instead." + "description": "WordPress plugins to install and activate" }, "siteOptions": { "type": "object", @@ -109,8 +107,7 @@ "description": "The site title" } }, - "description": "WordPress site options to define", - "deprecated": "This experimental option will change without warning.\nUse `steps` instead." + "description": "WordPress site options to define" }, "login": { "anyOf": [ diff --git a/packages/playground/blueprints/src/lib/blueprint.ts b/packages/playground/blueprints/src/lib/blueprint.ts index 72445cd822..9828af4aec 100644 --- a/packages/playground/blueprints/src/lib/blueprint.ts +++ b/packages/playground/blueprints/src/lib/blueprint.ts @@ -61,22 +61,16 @@ export interface Blueprint { /** * PHP Constants to define on every request - * @deprecated This experimental option will change without warning. - * Use `steps` instead. */ constants?: Record; /** * WordPress plugins to install and activate - * @deprecated This experimental option will change without warning. - * Use `steps` instead. */ plugins?: Array; /** * WordPress site options to define - * @deprecated This experimental option will change without warning. - * Use `steps` instead. */ siteOptions?: Record & { /** The site title */