-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcli.js
39 lines (36 loc) · 1.01 KB
/
cli.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env node
const prog = require('caporal')
// eslint-disable-next-line import/no-extraneous-dependencies
const glob = require('glob')
const generator = require('./generator').default
prog
.version('0.0.2')
.help('A tool to generate your locale files compatible with i18n.')
.command('create', 'Create translations files.')
.option(
'-g, --glob <pattern>',
'Search pattern to create the translations files.',
null,
'**/*.js'
)
.option('-l, --lang <languages>', 'Languages to translate.', prog.LIST)
.option(
'-e, --exclude <pattern>',
'Exclude files with pattern',
prog.LIST,
'**/node_modules/**,**/.git/**'
)
.action(async (args, options, logger) => {
try {
await glob(options.glob, { dot: true, ignore: options.exclude }, async (err, files) => {
if (err) {
logger.info(err)
return
}
await generator(files, options.lang)
})
} catch (error) {
console.error('CLI:', error)
}
})
prog.parse(process.argv)