@@ -86,7 +86,7 @@ export abstract class SchematicCommand extends Command {
86
86
private _originalOptions : Option [ ] ;
87
87
private _engineHost : FileSystemEngineHostBase ;
88
88
private _engine : Engine < FileSystemCollectionDesc , FileSystemSchematicDesc > ;
89
- private _workFlow : workflow . BaseWorkflow ;
89
+ private _workflow : workflow . BaseWorkflow ;
90
90
argStrategy = ArgumentStrategy . Nothing ;
91
91
92
92
constructor (
@@ -166,7 +166,7 @@ export abstract class SchematicCommand extends Command {
166
166
/*
167
167
* Runtime hook to allow specifying customized workflow
168
168
*/
169
- protected getWorkFlow ( options : RunSchematicOptions ) : workflow . BaseWorkflow {
169
+ protected getWorkflow ( options : RunSchematicOptions ) : workflow . BaseWorkflow {
170
170
const { force, dryRun} = options ;
171
171
const fsHost = new virtualFs . ScopedHost (
172
172
new NodeJsSyncHost ( ) , normalize ( this . project . root ) ) ;
@@ -182,12 +182,12 @@ export abstract class SchematicCommand extends Command {
182
182
) ;
183
183
}
184
184
185
- private _getWorkFlow ( options : RunSchematicOptions ) : workflow . BaseWorkflow {
186
- if ( ! this . _workFlow ) {
187
- this . _workFlow = this . getWorkFlow ( options ) ;
185
+ private _getWorkflow ( options : RunSchematicOptions ) : workflow . BaseWorkflow {
186
+ if ( ! this . _workflow ) {
187
+ this . _workflow = this . getWorkflow ( options ) ;
188
188
}
189
189
190
- return this . _workFlow ;
190
+ return this . _workflow ;
191
191
}
192
192
193
193
protected runSchematic ( options : RunSchematicOptions ) {
@@ -196,7 +196,7 @@ export abstract class SchematicCommand extends Command {
196
196
let nothingDone = true ;
197
197
let loggingQueue : string [ ] = [ ] ;
198
198
let error = false ;
199
- const workflow = this . _getWorkFlow ( options ) ;
199
+ const workflow = this . _getWorkflow ( options ) ;
200
200
201
201
const workingDir = process . cwd ( ) . replace ( this . project . root , '' ) . replace ( / \\ / g, '/' ) ;
202
202
const pathOptions = this . setPathOptions ( schematicOptions , workingDir ) ;
0 commit comments