Skip to content

Commit bb6bcb5

Browse files
committed
wip
1 parent 547ccc5 commit bb6bcb5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/commands/diff-scan/get.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import chalk from 'chalk'
22
import meow from 'meow'
33
import ora from 'ora'
44
import fetch from 'node-fetch'
5+
import util from 'util'
56

67
import { outputFlags } from '../../flags'
78
// import {
@@ -148,5 +149,7 @@ async function getDiffScan(
148149
// after: 922e45f5-8a7b-4b16-95a5-e98ad00470f1
149150

150151
console.log(`\n Diff scan result: \n`)
151-
console.log(data);
152+
// console.log(data);
153+
154+
console.log(util.inspect(data, {showHidden: false, depth: null, colors: true}))
152155
}

0 commit comments

Comments
 (0)