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