Skip to content

Commit b89fad9

Browse files
committed
refactor: remove noise
1 parent f83060a commit b89fad9

File tree

1 file changed

+2
-1
lines changed
  • packages/angular_devkit/schematics/src/workflow

1 file changed

+2
-1
lines changed

packages/angular_devkit/schematics/src/workflow/base.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { EMPTY, Observable, Subject, concat, from, of, throwError } from 'rxjs';
1010
import { concatMap, defaultIfEmpty, ignoreElements, last, map, tap } from 'rxjs/operators';
1111
import { Engine, EngineHost, SchematicEngine } from '../engine';
1212
import { UnsuccessfulWorkflowExecution } from '../exception/exception';
13-
import { standardFormats } from '../formats/index';
13+
import { standardFormats } from '../formats';
1414
import { DryRunEvent, DryRunSink } from '../sink/dryrun';
1515
import { HostSink } from '../sink/host';
1616
import { Sink } from '../sink/sink';
@@ -63,6 +63,7 @@ export abstract class BaseWorkflow implements Workflow {
6363
constructor(options: BaseWorkflowOptions) {
6464
this._host = options.host;
6565
this._engineHost = options.engineHost;
66+
6667
if (options.registry) {
6768
this._registry = options.registry;
6869
} else {

0 commit comments

Comments
 (0)