| 
									
										
										
										
											2020-03-17 12:58:17 +01:00
										 |  |  | #!/usr/bin/env node | 
					
						
							| 
									
										
										
										
											2020-03-04 09:42:45 -08:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							| 
									
										
										
										
											2020-05-19 12:08:49 -07:00
										 |  |  |  * Copyright Google LLC All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2020-03-04 09:42:45 -08: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
 | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2020-03-26 10:45:09 -07:00
										 |  |  | import * as yargs from 'yargs'; | 
					
						
							|  |  |  | import {tsCircularDependenciesBuilder} from './ts-circular-dependencies/index'; | 
					
						
							|  |  |  | import {buildPullapproveParser} from './pullapprove/cli'; | 
					
						
							|  |  |  | import {buildCommitMessageParser} from './commit-message/cli'; | 
					
						
							| 
									
										
										
										
											2020-04-20 13:00:10 -07:00
										 |  |  | import {buildFormatParser} from './format/cli'; | 
					
						
							| 
									
										
										
										
											2020-04-20 14:44:25 -07:00
										 |  |  | import {buildReleaseParser} from './release/cli'; | 
					
						
							| 
									
										
										
										
											2020-05-05 15:37:31 -07:00
										 |  |  | import {buildPrParser} from './pr/cli'; | 
					
						
							| 
									
										
										
										
											2020-03-04 14:37:21 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 10:45:09 -07:00
										 |  |  | yargs.scriptName('ng-dev') | 
					
						
							|  |  |  |     .demandCommand() | 
					
						
							|  |  |  |     .recommendCommands() | 
					
						
							|  |  |  |     .command('commit-message <command>', '', buildCommitMessageParser) | 
					
						
							| 
									
										
										
										
											2020-04-20 13:00:10 -07:00
										 |  |  |     .command('format <command>', '', buildFormatParser) | 
					
						
							| 
									
										
										
										
											2020-05-05 15:37:31 -07:00
										 |  |  |     .command('pr <command>', '', buildPrParser) | 
					
						
							| 
									
										
										
										
											2020-04-20 14:44:25 -07:00
										 |  |  |     .command('pullapprove <command>', '', buildPullapproveParser) | 
					
						
							|  |  |  |     .command('release <command>', '', buildReleaseParser) | 
					
						
							|  |  |  |     .command('ts-circular-deps <command>', '', tsCircularDependenciesBuilder) | 
					
						
							| 
									
										
										
										
											2020-03-26 10:45:09 -07:00
										 |  |  |     .wrap(120) | 
					
						
							|  |  |  |     .strict() | 
					
						
							|  |  |  |     .parse(); |