Skip to content

Commit

Permalink
refactor: further updates
Browse files Browse the repository at this point in the history
  • Loading branch information
damienbutt committed Feb 12, 2024
1 parent 2643735 commit 715bf69
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/generators/TypescriptGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ export class TypescriptGenerator implements GeneratorInterface {
}),
);

console.log("Before");
console.log(this.generator.options);

this.updateOptions(answers);
}

Expand All @@ -93,6 +96,9 @@ export class TypescriptGenerator implements GeneratorInterface {
// this.generator.options.git = this.generator.options.skipPrompts
// ? this.generator.options.git
// : answers.git;

console.log("After");
console.log(this.generator.options);
}

private getFilePaths(): Array<PathMap> {
Expand Down

0 comments on commit 715bf69

Please sign in to comment.