2020-03-26 13:45:09 -04:00
|
|
|
/**
|
|
|
|
* @license
|
2020-05-19 15:08:49 -04:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2020-03-26 13:45:09 -04:00
|
|
|
*
|
|
|
|
* 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';
|
2020-05-20 17:22:29 -04:00
|
|
|
|
2020-09-14 16:21:31 -04:00
|
|
|
import {RestoreCommitMessageModule} from './restore-commit-message/cli';
|
|
|
|
import {ValidateFileModule} from './validate-file/cli';
|
|
|
|
import {ValidateRangeModule} from './validate-range/cli';
|
|
|
|
import {WizardModule} from './wizard/cli';
|
2020-03-26 13:45:09 -04:00
|
|
|
|
|
|
|
/** Build the parser for the commit-message commands. */
|
|
|
|
export function buildCommitMessageParser(localYargs: yargs.Argv) {
|
2020-03-20 15:24:12 -04:00
|
|
|
return localYargs.help()
|
|
|
|
.strict()
|
2020-09-14 16:21:31 -04:00
|
|
|
.command(RestoreCommitMessageModule)
|
|
|
|
.command(WizardModule)
|
|
|
|
.command(ValidateFileModule)
|
|
|
|
.command(ValidateRangeModule);
|
2020-03-26 13:45:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (require.main == module) {
|
|
|
|
buildCommitMessageParser(yargs).parse();
|
|
|
|
}
|