From d17fc8103ac37887456483c29ef28f6ccd2519d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20=C5=81ukomiak?= Date: Fri, 7 Jun 2019 17:26:17 +0200 Subject: [PATCH] fix(cli): display only one, correct default for --preset flag (#377) --- command.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command.js b/command.js index 0b70d492c..c03ce5604 100755 --- a/command.js +++ b/command.js @@ -94,7 +94,7 @@ const yargs = require('yargs') .option('preset', { type: 'string', default: defaults.preset, - describe: 'Commit message guideline preset (default: angular)' + describe: 'Commit message guideline preset' }) .check((argv) => { if (typeof argv.scripts !== 'object' || Array.isArray(argv.scripts)) {