16 lines
		
	
	
		
			502 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
		
			502 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 {verify} from './verify';
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								/** Build the parser for the NgBot commands. */
							 | 
						||
| 
								 | 
							
								export function buildNgbotParser(localYargs: yargs.Argv) {
							 | 
						||
| 
								 | 
							
								  return localYargs.help().strict().demandCommand().command(
							 | 
						||
| 
								 | 
							
								      'verify', 'Verify the NgBot config', {}, () => verify());
							 | 
						||
| 
								 | 
							
								}
							 |