Skip to content

Commit 25e0928

Browse files
equinoxMRHarrison
authored andcommitted
fix(help): remove match of *.run.ts files (angular#3982)
1 parent 0dce67e commit 25e0928

File tree

1 file changed

+1
-1
lines changed
  • packages/angular-cli/commands

1 file changed

+1
-1
lines changed

packages/angular-cli/commands/help.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const HelpCommand = Command.extend({
2323
run: function (commandOptions: any, rawArgs: any) {
2424
let commandFiles = fs.readdirSync(__dirname)
2525
// Remove files that are not JavaScript or Typescript
26-
.filter(file => file.match(/\.(j|t)s$/) && !file.match(/\.d.ts$/))
26+
.filter(file => file.match(/\.(j|t)s$/) && !file.match(/\.d.ts$/) && !file.match(/\.run.ts$/))
2727
.map(file => path.parse(file).name)
2828
.map(file => file.toLowerCase());
2929

0 commit comments

Comments
 (0)