From 28411897be905bde8c08383e8954e149de32c20f Mon Sep 17 00:00:00 2001 From: Mikael Finstad Date: Sat, 25 Apr 2020 16:35:38 +0800 Subject: [PATCH] fix verbose --- cli.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cli.js b/cli.js index c0a105d..2354d20 100644 --- a/cli.js +++ b/cli.js @@ -33,7 +33,7 @@ const cli = meow(` --audio-file-path Add an audio track --fast, -f Fast mode (low resolution and FPS, useful for getting a quick preview) - --verbose + --verbose, -v For more detailed explanation, see: https://github.com/mifi/editly @@ -43,6 +43,7 @@ const cli = meow(` $ editly my-editly.json5 --out output.gif `, { flags: { + verbose: { type: 'boolean', alias: 'v' }, fast: { type: 'boolean', alias: 'f' }, transitionDuration: { type: 'number' }, width: { type: 'number' },