From 5ba2719a000b01ae5aedf47205033a4e01f92a76 Mon Sep 17 00:00:00 2001 From: Matt Brading Date: Thu, 23 Apr 2020 08:38:44 +0100 Subject: [PATCH] fix(lib/index.js): made -h/--header a boolean arg fix #209 --- lib/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/index.js b/lib/index.js index 84bbfcec..9ee29b3f 100644 --- a/lib/index.js +++ b/lib/index.js @@ -97,6 +97,7 @@ async function main(args) { .describe('p', 'name of a custom property which should be also in the description of an element (may be used multiple times)') .default('p', []) .alias('h', 'header') + .boolean('h') .describe('h', 'if the value is false the header will be skipped') .default('h', true);