fix(dev-infra): remove commit message wizard and builder (#41280)

Removing commit message builder and wizard as they are unused and
unneeded.

PR Close #41280
This commit is contained in:
Joey Perrott
2021-03-19 10:01:11 -07:00
committed by Misko Hevery
parent e8cae22d66
commit 5eb7f3491f
12 changed files with 30 additions and 480 deletions
-2
View File
@@ -10,14 +10,12 @@ import * as yargs from 'yargs';
import {RestoreCommitMessageModule} from './restore-commit-message/cli';
import {ValidateFileModule} from './validate-file/cli';
import {ValidateRangeModule} from './validate-range/cli';
import {WizardModule} from './wizard/cli';
/** Build the parser for the commit-message commands. */
export function buildCommitMessageParser(localYargs: yargs.Argv) {
return localYargs.help()
.strict()
.command(RestoreCommitMessageModule)
.command(WizardModule)
.command(ValidateFileModule)
.command(ValidateRangeModule);
}