Skip to content

Commit 49eadb7

Browse files
committed
wip
1 parent fd826e8 commit 49eadb7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lib/commands/repos/list.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/* eslint-disable no-console */
22

33
import chalk from 'chalk'
4+
// @ts-ignore
45
import chalkTable from 'chalk-table'
56
import meow from 'meow'
67
import ora from 'ora'
@@ -135,6 +136,7 @@ function setupCommand (name, description, argv, importMeta) {
135136
*/
136137
async function listOrgRepos (orgSlug, input, spinner) {
137138
const socketSdk = await setupSdk(getDefaultKey())
139+
// @ts-ignore
138140
const result = await handleApiCall(socketSdk.getOrgRepoList(orgSlug, input), 'looking up package')
139141

140142
if (!result.success) {
@@ -153,6 +155,7 @@ async function listOrgRepos (orgSlug, input, spinner) {
153155
]
154156
}
155157

158+
// @ts-ignore
156159
const formattedResults = result.data.results.map(d => {
157160
return {
158161
...d

0 commit comments

Comments
 (0)