verbose disabled by default

This commit is contained in:
Kim Biesbjerg
2019-06-11 13:00:10 +02:00
parent 590f58fff3
commit ab29c9ab67
2 changed files with 4 additions and 3 deletions

View File

@@ -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, {

View File

@@ -24,7 +24,7 @@ export class ExtractTask implements TaskInterface {
sort: false,
clean: false,
patterns: [],
verbose: true
verbose: false
};
protected _parsers: ParserInterface[] = [];