Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
alexforsyth committed Jun 25, 2024
1 parent 8bfa599 commit 7bb2194
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ export type OptionsSchemaDefinition<
* This component can be used to define a schema with a given identifier.
*/
export class OptionsSchema<T extends OptionsSchemaType> {
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);
}
Expand Down

0 comments on commit 7bb2194

Please sign in to comment.