Skip to content

Commit 784f4e6

Browse files
committed
style: inverse logic according to feedback
1 parent c611469 commit 784f4e6

File tree

1 file changed

+1
-1
lines changed
  • packages/schematics/angular/application

1 file changed

+1
-1
lines changed

packages/schematics/angular/application/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ export default function (options: ApplicationOptions): Rule {
368368
}),
369369
move(sourceDir),
370370
]), MergeStrategy.Overwrite),
371-
!options.minimal ? schematic('e2e', e2eOptions) : noop(),
371+
options.minimal ? noop() : schematic('e2e', e2eOptions),
372372
]);
373373
};
374374
}

0 commit comments

Comments
 (0)