Skip to content

Commit

Permalink
Restored functionality of the help & version aliases (#14)
Browse files Browse the repository at this point in the history
* Fixed '-h' parameter that not worked

* Fixed '-v' parameter that not worked
  • Loading branch information
gebeto authored and klaudiosinani committed Aug 5, 2018
1 parent cbdf90e commit 1f88010
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ const taskbook = require('.');

const cli = meow(help, {
flags: {
help: {
type: 'boolean',
alias: 'h'
},
version: {
type: 'boolean',
alias: 'v'
},
archive: {
type: 'boolean',
alias: 'a'
Expand Down

0 comments on commit 1f88010

Please sign in to comment.