From a4fb80cb555838dc8d1e951ff654a52d2fcca25f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20L=C3=B3pez=20Pardo?= Date: Mon, 7 Oct 2019 08:34:14 +0200 Subject: [PATCH] remove unexisting yargs command --- bin/better-crowdin | 3 --- package.json | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/bin/better-crowdin b/bin/better-crowdin index f6a6b62..1761598 100755 --- a/bin/better-crowdin +++ b/bin/better-crowdin @@ -11,8 +11,6 @@ yargs .default('config', './crowdin.yml') .default('skipValidation', []) .default('baseBranches', ['master']) - .hide('skipValidation') - .hide('baseBranches') .config('config', 'Crowdin configuration file path', (configPath) => camelcase(yaml.safeLoad(fs.readFileSync(configPath))), ) @@ -37,7 +35,6 @@ yargs type: 'boolean', }, }) - .showHidden(false) .commandDir('../lib/commands') .recommendCommands() .version() diff --git a/package.json b/package.json index c5b2f71..e94aa75 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "better-crowdin", - "version": "1.0.0", + "version": "1.0.1", "description": "Crowdin CLI on steroids", "skipBuild": true, "license": "UNLICENSED",