@@ -86,7 +86,7 @@ export abstract class SchematicCommand extends Command {
8686 private _originalOptions : Option [ ] ;
8787 private _engineHost : FileSystemEngineHostBase ;
8888 private _engine : Engine < FileSystemCollectionDesc , FileSystemSchematicDesc > ;
89- private _workFlow : workflow . BaseWorkflow ;
89+ private _workflow : workflow . BaseWorkflow ;
9090 argStrategy = ArgumentStrategy . Nothing ;
9191
9292 constructor (
@@ -166,7 +166,7 @@ export abstract class SchematicCommand extends Command {
166166 /*
167167 * Runtime hook to allow specifying customized workflow
168168 */
169- protected getWorkFlow ( options : RunSchematicOptions ) : workflow . BaseWorkflow {
169+ protected getWorkflow ( options : RunSchematicOptions ) : workflow . BaseWorkflow {
170170 const { force, dryRun} = options ;
171171 const fsHost = new virtualFs . ScopedHost (
172172 new NodeJsSyncHost ( ) , normalize ( this . project . root ) ) ;
@@ -182,12 +182,12 @@ export abstract class SchematicCommand extends Command {
182182 ) ;
183183 }
184184
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 ) ;
188188 }
189189
190- return this . _workFlow ;
190+ return this . _workflow ;
191191 }
192192
193193 protected runSchematic ( options : RunSchematicOptions ) {
@@ -196,7 +196,7 @@ export abstract class SchematicCommand extends Command {
196196 let nothingDone = true ;
197197 let loggingQueue : string [ ] = [ ] ;
198198 let error = false ;
199- const workflow = this . _getWorkFlow ( options ) ;
199+ const workflow = this . _getWorkflow ( options ) ;
200200
201201 const workingDir = process . cwd ( ) . replace ( this . project . root , '' ) . replace ( / \\ / g, '/' ) ;
202202 const pathOptions = this . setPathOptions ( schematicOptions , workingDir ) ;
0 commit comments