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 00f21d3 commit bb4834cCopy full SHA for bb4834c
packages/@angular/cli/commands/completion.ts
@@ -78,7 +78,7 @@ const CompletionCommand = Command.extend({
78
commandOptions.all = !commandOptions.bash && !commandOptions.zsh;
79
80
const commandFiles = fs.readdirSync(__dirname)
81
- .filter(file => file.match(/\.ts$/) && !file.match(/\.run.ts$/))
+ .filter(file => file.match(/\.(j|t)s$/) && !file.match(/\.d.ts$/))
82
.map(file => path.parse(file).name)
83
.filter(file => {
84
return commandsToIgnore.indexOf(file) < 0;
0 commit comments