verbose disabled by default
This commit is contained in:
		| @@ -85,7 +85,7 @@ export const cli = yargs | ||||
| 	.option('verbose', { | ||||
| 		alias: 'vb', | ||||
| 		describe: 'Log all output to console', | ||||
| 		default: true, | ||||
| 		default: false, | ||||
| 		type: 'boolean' | ||||
| 	}) | ||||
| 	.exitProcess(true) | ||||
| @@ -95,7 +95,8 @@ const extract = new ExtractTask(cli.input, cli.output, { | ||||
| 	replace: cli.replace, | ||||
| 	sort: cli.sort, | ||||
| 	clean: cli.clean, | ||||
| 	patterns: cli.patterns | ||||
| 	patterns: cli.patterns, | ||||
| 	verbose: cli.verbose | ||||
| }); | ||||
|  | ||||
| const compiler: CompilerInterface = CompilerFactory.create(cli.format, { | ||||
|   | ||||
| @@ -24,7 +24,7 @@ export class ExtractTask implements TaskInterface { | ||||
| 		sort: false, | ||||
| 		clean: false, | ||||
| 		patterns: [], | ||||
| 		verbose: true | ||||
| 		verbose: false | ||||
| 	}; | ||||
|  | ||||
| 	protected _parsers: ParserInterface[] = []; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user