We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a53cf44 commit c611469Copy full SHA for c611469
packages/schematics/angular/application/index.ts
@@ -368,7 +368,7 @@ export default function (options: ApplicationOptions): Rule {
368
}),
369
move(sourceDir),
370
]), MergeStrategy.Overwrite),
371
- schematic('e2e', e2eOptions),
+ !options.minimal ? schematic('e2e', e2eOptions) : noop(),
372
]);
373
};
374
}
packages/schematics/angular/ng-new/index.ts
@@ -56,6 +56,7 @@ export default function (options: NgNewOptions): Rule {
56
style: options.style,
57
skipTests: options.skipTests,
58
skipPackageJson: false,
59
+ minimal: options.minimal,
60
61
62
return chain([
0 commit comments