refactor: Remove empty default value for parameter --postfixModels

This commit is contained in:
Mark Brockhoff 2022-07-14 11:28:29 +02:00
parent 6f11b12fac
commit b342c3dd60

View File

@ -23,7 +23,7 @@ const params = program
.option('--indent <value>', 'Indentation options [4, 2, tabs]', '4')
.option('--postfix <value>', 'Deprecated: Use --postfixServices instead. Service name postfix', 'Service')
.option('--postfixServices <value>', 'Service name postfix', 'Service')
.option('--postfixModels <value>', 'Model name postfix', '')
.option('--postfixModels <value>', 'Model name postfix')
.option('--request <value>', 'Path to custom request file')
.parse(process.argv)
.opts();