From f4bfb9231cbc38fc1ec1399b5a85b3ac3d4da1c4 Mon Sep 17 00:00:00 2001 From: gebeto Date: Wed, 1 Aug 2018 10:34:24 +0300 Subject: [PATCH 1/2] Fixed '-h' parameter that not worked --- cli.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cli.js b/cli.js index e8c37224..c8a69b4a 100644 --- a/cli.js +++ b/cli.js @@ -8,6 +8,10 @@ const taskbook = require('.'); const cli = meow(help, { flags: { + help: { + type: 'boolean', + alias: 'h' + }, archive: { type: 'boolean', alias: 'a' From 190a12769a49f8770c48ba9edcfa1444da0f99cd Mon Sep 17 00:00:00 2001 From: gebeto Date: Wed, 1 Aug 2018 11:31:56 +0300 Subject: [PATCH 2/2] Fixed '-v' parameter that not worked --- cli.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cli.js b/cli.js index c8a69b4a..f6ef3d18 100644 --- a/cli.js +++ b/cli.js @@ -12,6 +12,10 @@ const cli = meow(help, { type: 'boolean', alias: 'h' }, + version: { + type: 'boolean', + alias: 'v' + }, archive: { type: 'boolean', alias: 'a'