From 6a51d26870aabc97bf2da6f70e0c50b77a632526 Mon Sep 17 00:00:00 2001 From: PythonCoderAS <13932583+PythonCoderAS@users.noreply.github.com> Date: Tue, 23 Aug 2022 09:07:29 -0400 Subject: [PATCH] Remove extraneous debug calls --- package.json | 2 +- src/commands/list.ts | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/package.json b/package.json index 6daaee3..c481e99 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gh-all-repos", - "version": "1.1.1", + "version": "1.1.2", "description": "Do anything on all repos that belong to a user/org.", "main": "dist/index.js", "type": "commonjs", diff --git a/src/commands/list.ts b/src/commands/list.ts index 90ff32f..2a0faef 100644 --- a/src/commands/list.ts +++ b/src/commands/list.ts @@ -67,7 +67,6 @@ class List extends BaseHandler { private transformListOptionstoTrueListOptions( options: ListOptions ): TrueListOptions { - console.log(options); const data: TrueListOptions = {}; if (options.fork !== undefined) { data.fork = options.fork; @@ -116,8 +115,6 @@ class List extends BaseHandler { async processList(options: ListOptions, repos: FullRepoData) { const trueOptions = this.transformListOptionstoTrueListOptions(options); - console.log(trueOptions); - console.log(repos[0]); const filteredRepos = repos.filter((repo) => { if ( trueOptions.archived !== undefined &&