fix(cli): fix output option type

This commit is contained in:
Roman Hotsiy 2018-03-20 13:01:45 +02:00
parent 8891f5c97d
commit c729c6c75b
No known key found for this signature in database
GPG Key ID: 5CB7B3ACABA57CB0

View File

@ -79,7 +79,7 @@ yargs
yargs.option('o', { yargs.option('o', {
describe: 'Output file', describe: 'Output file',
alias: 'output', alias: 'output',
type: 'number', type: 'string',
default: 'redoc-static.html', default: 'redoc-static.html',
}); });