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