This commit is contained in:
Dirk Baeumer 2020-09-15 17:11:03 +02:00
Родитель e96fb954ff
Коммит 51ded2b137
2 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -30,7 +30,7 @@
"@types/vinyl": "^2.0.2",
"@types/webpack": "^4.4.34",
"@types/xml2js": "^0.4.2",
"@types/yargs": "^10.0.1",
"@types/yargs": "^15.0.5",
"mocha": "^7.1.2"
},
"dependencies": {
@ -45,7 +45,7 @@
"typescript": "^3.9.5",
"vinyl": "^2.1.0",
"xml2js": "^0.4.19",
"yargs": "^13.2.4"
"yargs": "^16.0.3"
},
"scripts": {
"prepare": "tsc -p ./src",

Просмотреть файл

@ -20,15 +20,18 @@ let argv = yargs
.option('outDir', {
alias: 'o',
describe: 'The output directory. If not specified the files are overwriten in place.',
string: true,
demand: false
})
.option('rootDir', {
alias: 'r',
describe: 'The root directory of the sources. Only honored when outDir is set.',
string: true,
demand: false
})
.option('keepFilenames', {
describe: 'Inlines filenames when making localization calls. Only honored when rootDir is set.',
boolean: true,
demand: false
})
.argv;