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 58a9e07 commit 7bb6b52Copy full SHA for 7bb6b52
packages/@angular/cli/tasks/schematic-get-options.ts
@@ -30,6 +30,7 @@ export default Task.extend({
30
const keys = Object.keys(properties);
31
const availableOptions = keys
32
.map(key => ({...properties[key], ...{name: stringUtils.dasherize(key)}}))
33
+ .filter(opt => opt.visible !== false)
34
.map(opt => {
35
let type;
36
const schematicType = opt.type;
0 commit comments