We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 547ccc5 commit bb6bcb5Copy full SHA for bb6bcb5
src/commands/diff-scan/get.ts
@@ -2,6 +2,7 @@ import chalk from 'chalk'
2
import meow from 'meow'
3
import ora from 'ora'
4
import fetch from 'node-fetch'
5
+import util from 'util'
6
7
import { outputFlags } from '../../flags'
8
// import {
@@ -148,5 +149,7 @@ async function getDiffScan(
148
149
// after: 922e45f5-8a7b-4b16-95a5-e98ad00470f1
150
151
console.log(`\n Diff scan result: \n`)
- console.log(data);
152
+// console.log(data);
153
+
154
+ console.log(util.inspect(data, {showHidden: false, depth: null, colors: true}))
155
}
0 commit comments