We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ng g
collection.json
schema.json
1 parent 5ac6fd3 commit 8e66c91Copy full SHA for 8e66c91
packages/angular/cli/src/commands/generate/cli.ts
@@ -68,16 +68,21 @@ export class GenerateCommandModule
68
69
for (const schematicName of schematicNames) {
70
const {
71
- description: { schemaJson, aliases: schematicAliases, hidden: schematicHidden },
+ description: {
72
+ schemaJson,
73
+ aliases: schematicAliases,
74
+ hidden: schematicHidden,
75
+ description: schematicDescription,
76
+ },
77
} = collection.createSchematic(schematicName, true);
78
79
if (!schemaJson) {
80
continue;
81
}
82
83
- description,
84
'x-deprecated': xDeprecated,
85
+ description = schematicDescription,
86
aliases = schematicAliases,
87
hidden = schematicHidden,
88
} = schemaJson;
0 commit comments