From b0581a6af1b025afcfe69aaaa8cfeb63b6dee2b7 Mon Sep 17 00:00:00 2001 From: Aaron Dill <117116764+aarondill@users.noreply.github.com> Date: Sun, 22 Jan 2023 12:08:58 -0600 Subject: [PATCH] =?UTF-8?q?fix(cli):=20change=20-V=20=E2=80=94>=20-v?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cli.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli.js b/cli.js index a411c89f..2e74093e 100755 --- a/cli.js +++ b/cli.js @@ -19,7 +19,7 @@ function parseCliArguments() { options: { check: { type: 'boolean', short: 'c' }, quiet: { type: 'boolean', short: 'q' }, - version: { type: 'boolean', short: 'V' }, + version: { type: 'boolean', short: 'v' }, help: { type: 'boolean', short: 'h' }, }, allowPositionals: true, @@ -40,7 +40,7 @@ Strings passed as files are parsed as globs. -c, --check check if FILES are sorted -q, --quiet don't output success messages -h, --help display this help and exit - -V, --version display the version and exit + -v, --version display the version and exit `, ) process.exit(0)