We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1c6a75 commit a7d0222Copy full SHA for a7d0222
src/services/arguments.service.ts
@@ -14,6 +14,7 @@ export const argumentsInstance = yargs
14
.demandOption(['file'])
15
.alias('o', 'output-folder')
16
.nargs('output-folder', 1)
17
+ .implies('file', 'output-folder')
18
.describe(
19
'output-folder',
20
'Specify the output folder (generated folders will be replaced)',
@@ -24,4 +25,5 @@ export const argumentsInstance = yargs
24
25
.default('clean', true)
26
.help('help')
27
.alias('h', 'help')
- .epilog('copyright 2020').argv;
28
+ .epilog('For more info visit: https://github.com/ProtocolNebula/ts-openapi-generator/')
29
+ .argv;
0 commit comments