From c729c6c75b14026d5dd10998202571823349c12a Mon Sep 17 00:00:00 2001 From: Roman Hotsiy Date: Tue, 20 Mar 2018 13:01:45 +0200 Subject: [PATCH] fix(cli): fix output option type --- cli/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/index.ts b/cli/index.ts index 483fbd6ce6..5ecb7e651b 100644 --- a/cli/index.ts +++ b/cli/index.ts @@ -79,7 +79,7 @@ yargs yargs.option('o', { describe: 'Output file', alias: 'output', - type: 'number', + type: 'string', default: 'redoc-static.html', });