28 lines
855 B
TypeScript
28 lines
855 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
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);
|
|
}
|
|
|
|
if (require.main == module) {
|
|
buildCommitMessageParser(yargs).parse();
|
|
}
|