2017-03-21 17:21:39 +03:00
|
|
|
import { ExtractTask } from './tasks/extract.task';
|
2017-03-20 17:29:41 +03:00
|
|
|
import { PipeParser } from '../parsers/pipe.parser';
|
|
|
|
import { DirectiveParser } from '../parsers/directive.parser';
|
|
|
|
import { ServiceParser } from '../parsers/service.parser';
|
|
|
|
|
|
|
|
import * as fs from 'fs';
|
|
|
|
import * as yargs from 'yargs';
|
|
|
|
|
2017-03-21 17:21:39 +03:00
|
|
|
export const cli = yargs
|
2017-03-20 17:29:41 +03:00
|
|
|
.usage('Extract strings from files for translation.\nUsage: $0 [options]')
|
2017-03-21 17:27:24 +03:00
|
|
|
.version(require(__dirname + '/../../package.json').version)
|
2017-03-21 17:21:39 +03:00
|
|
|
.alias('version', 'v')
|
|
|
|
.help('help')
|
|
|
|
.alias('help', 'h')
|
2017-03-20 17:51:38 +03:00
|
|
|
.option('input', {
|
2017-03-21 17:21:39 +03:00
|
|
|
alias: 'i',
|
2017-03-20 17:51:38 +03:00
|
|
|
describe: 'Paths you would like to extract strings from. You can use path expansion, glob patterns and multiple paths',
|
2017-03-20 17:29:41 +03:00
|
|
|
default: process.env.PWD,
|
2017-03-20 17:51:38 +03:00
|
|
|
type: 'array',
|
2017-03-21 17:21:39 +03:00
|
|
|
normalize: true
|
2017-03-20 17:51:38 +03:00
|
|
|
})
|
2017-03-21 17:21:39 +03:00
|
|
|
.check(options => {
|
|
|
|
options.input.forEach((dir: string) => {
|
2017-03-20 17:51:38 +03:00
|
|
|
if (!fs.existsSync(dir) || !fs.statSync(dir).isDirectory()) {
|
|
|
|
throw new Error(`The path you supplied was not found: '${dir}'`)
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
return true;
|
2017-03-20 17:29:41 +03:00
|
|
|
})
|
2017-03-21 17:21:39 +03:00
|
|
|
.option('patterns', {
|
|
|
|
alias: 'p',
|
2017-03-21 17:59:03 +03:00
|
|
|
describe: 'Extract strings from the following file patterns',
|
2017-03-21 17:21:39 +03:00
|
|
|
type: 'array',
|
|
|
|
default: ['/**/*.html', '/**/*.ts']
|
|
|
|
})
|
2017-03-20 17:29:41 +03:00
|
|
|
.option('output', {
|
|
|
|
alias: 'o',
|
2017-03-20 17:51:38 +03:00
|
|
|
describe: 'Paths where you would like to save extracted strings. You can use path expansion, glob patterns and multiple paths',
|
|
|
|
type: 'array',
|
2017-03-21 17:21:39 +03:00
|
|
|
normalize: true,
|
2017-03-20 17:51:38 +03:00
|
|
|
required: true
|
2017-03-20 17:29:41 +03:00
|
|
|
})
|
|
|
|
.option('format', {
|
|
|
|
alias: 'f',
|
|
|
|
describe: 'Output format',
|
|
|
|
default: 'json',
|
|
|
|
type: 'string',
|
|
|
|
choices: ['json', 'namespaced-json', 'pot']
|
|
|
|
})
|
|
|
|
.option('replace', {
|
|
|
|
alias: 'r',
|
|
|
|
describe: 'Replace the contents of output file if it exists (Merges by default)',
|
|
|
|
default: false,
|
|
|
|
type: 'boolean'
|
|
|
|
})
|
|
|
|
.option('sort', {
|
|
|
|
alias: 's',
|
2017-03-21 17:59:03 +03:00
|
|
|
describe: 'Sort strings in alphabetical order when saving',
|
2017-03-20 17:29:41 +03:00
|
|
|
default: false,
|
|
|
|
type: 'boolean'
|
|
|
|
})
|
|
|
|
.option('clean', {
|
|
|
|
alias: 'c',
|
|
|
|
describe: 'Remove obsolete strings when merging',
|
|
|
|
default: false,
|
|
|
|
type: 'boolean'
|
|
|
|
})
|
2017-03-21 17:21:39 +03:00
|
|
|
.exitProcess(true)
|
|
|
|
.parse(process.argv);
|
|
|
|
|
|
|
|
const extractTask = new ExtractTask(cli.input, cli.output, {
|
|
|
|
replace: cli.replace,
|
|
|
|
sort: cli.sort,
|
|
|
|
clean: cli.clean,
|
|
|
|
patterns: cli.patterns
|
2017-03-20 17:29:41 +03:00
|
|
|
});
|
|
|
|
|
2017-03-21 17:21:39 +03:00
|
|
|
extractTask
|
|
|
|
.setParsers([
|
|
|
|
new ServiceParser(),
|
|
|
|
new PipeParser(),
|
|
|
|
new DirectiveParser()
|
|
|
|
])
|
|
|
|
.setCompiler(cli.format)
|
|
|
|
.execute();
|
2017-03-20 17:29:41 +03:00
|
|
|
|