From 3c63c0308411e49583e6186cc20740232dcfef2c Mon Sep 17 00:00:00 2001 From: Lars Trieloff Date: Mon, 13 Jan 2020 14:46:10 +0100 Subject: [PATCH] fix(cli): make the -n or --no-readme option work again the option would always be ignored, i.e. readme files would be generated all the time --- lib/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/index.js b/lib/index.js index 659b2fa3..e8efb2f7 100644 --- a/lib/index.js +++ b/lib/index.js @@ -74,7 +74,6 @@ async function main(args) { .alias('n', 'no-readme') .describe('n', 'Do not generate a README.md file in the output directory') - .default('n', false) .describe('link-*', 'Add this file as a link the explain the * attribute, e.g. --link-abstract=abstract.md')