From 567a13a741ab2154e57221b90f269dcf5960bcc6 Mon Sep 17 00:00:00 2001 From: Guillaume Roux Date: Thu, 1 Oct 2020 15:44:16 +0200 Subject: [PATCH] remove debugging console.log and bump package version --- package.json | 2 +- src/utils/options.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index 23bdcd8..bce9b3d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@mycrypto/ganache-toolbox", - "version": "0.1.1", + "version": "0.1.2", "author": "MyCrypto", "license": "MIT", "description": "A simple CLI to interact with MyCrypto Ganache", diff --git a/src/utils/options.ts b/src/utils/options.ts index 1109bae..b371973 100644 --- a/src/utils/options.ts +++ b/src/utils/options.ts @@ -19,7 +19,6 @@ export const argsToOpts = (): IOptions => { const args: IYargsObject = yargs .usage('Usage: ganache-toolbox -a
-i ') .options(options).argv as IYargsObject; - console.log(args); return { skipPrompts: args.y || false, instance: args.i,