2020-03-26 13:45:09 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. 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 {validateFile} from './validate-file';
|
|
|
|
|
|
|
|
/** Build the parser for the commit-message commands. */
|
|
|
|
export function buildCommitMessageParser(localYargs: yargs.Argv) {
|
|
|
|
return localYargs.help().strict().command(
|
2020-03-30 13:33:37 -04:00
|
|
|
'pre-commit-validate', 'Validate the most recent commit message', {}, () => {
|
|
|
|
validateFile('.git/COMMIT_EDITMSG');
|
|
|
|
});
|
2020-03-26 13:45:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (require.main == module) {
|
|
|
|
buildCommitMessageParser(yargs).parse();
|
|
|
|
}
|