We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d63bb4 commit 7b47753Copy full SHA for 7b47753
packages/angular-cli/commands/help.ts
@@ -23,7 +23,7 @@ const HelpCommand = Command.extend({
23
run: function (commandOptions: any, rawArgs: any) {
24
let commandFiles = fs.readdirSync(__dirname)
25
// Remove files that are not JavaScript or Typescript
26
- .filter(file => file.match(/\.(j|t)s$/) && !file.match(/\.d.ts$/))
+ .filter(file => file.match(/\.(j|t)s$/) && !file.match(/\.d.ts$/) && !file.match(/\.run.ts$/))
27
.map(file => path.parse(file).name)
28
.map(file => file.toLowerCase());
29
0 commit comments