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 ec41e6c commit 3b5dbadCopy full SHA for 3b5dbad
packages/angular/cli/commands/generate-impl.ts
@@ -24,6 +24,8 @@ export class GenerateCommand extends SchematicCommand<GenerateCommandSchema> {
24
this.description.suboptions = {};
25
26
const schematicNames = schematicName ? [schematicName] : collection.listSchematicNames();
27
+ // Sort as a courtesy for the user.
28
+ schematicNames.sort();
29
30
for (const name of schematicNames) {
31
const schematic = this.getSchematic(collection, name, true);
0 commit comments