From 7bb21949b51d40db4729d50ed828655d754d00bb Mon Sep 17 00:00:00 2001 From: alexforsyth Date: Tue, 25 Jun 2024 18:06:39 -0400 Subject: [PATCH] fixes --- .../blueprints/blueprint/src/ui-selectors/options-schemas.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/blueprints/blueprint/src/ui-selectors/options-schemas.ts b/packages/blueprints/blueprint/src/ui-selectors/options-schemas.ts index 758bfee98..418338036 100644 --- a/packages/blueprints/blueprint/src/ui-selectors/options-schemas.ts +++ b/packages/blueprints/blueprint/src/ui-selectors/options-schemas.ts @@ -28,9 +28,7 @@ export type OptionsSchemaDefinition< * This component can be used to define a schema with a given identifier. */ export class OptionsSchema { - constructor(protected readonly blueprint: Blueprint, protected readonly identifier: string, protected readonly schema: T) {} - - synthesize(): void { + constructor(protected readonly blueprint: Blueprint, protected readonly identifier: string, protected readonly schema: T) { if (!fs.existsSync(this.blueprint.context.wizardOptionsPath)) { fs.mkdirSync(this.blueprint.context.wizardOptionsPath); }