File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 11{
2- "version" : " 0.2.1 " ,
2+ "version" : " 0.2.2 " ,
33 "name" : " dotup-typescript-yeoman-generators" ,
44 "author" : {
55 "name" : " Peter Ullrich" ,
Original file line number Diff line number Diff line change @@ -23,22 +23,24 @@ export abstract class BaseGenerator<TStep extends string> extends generator impl
2323 static counter : number = 0 ;
2424 static sharedOptions : SharedOptions < string > ;
2525
26+
27+ public get sharedOptions ( ) : SharedOptions < TStep > {
28+ return BaseGenerator . sharedOptions ;
29+ }
30+
2631 readonly projectInfo : ProjectInfo ;
32+ private readonly doNotEjsReplace : string [ ] = [ ] ;
2733
2834 skipQuestions : boolean = false ;
2935 skipGenerator : boolean = false ;
3036 projectFiles : Project ;
3137
3238 conflictedProjectFiles : Project ;
3339
34- private readonly doNotEjsReplace : string [ ] = [ ] ;
35-
3640 generatorName : string ;
3741
3842 answers : TypeSaveProperty < Nested < TStep , string > > = < TypeSaveProperty < Nested < TStep , string > > > { } ;
3943
40-
41- // questions: Nested<TStep, IStepQuestion<TStep>>;
4244 questions : IStepQuestion < TStep > [ ] = [ ] ;
4345
4446 currentStep : TStep ;
You can’t perform that action at this time.
0 commit comments