We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dce67e commit 25e0928Copy full SHA for 25e0928
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