Refactored dev-cli

This commit is contained in:
mrjvs
2023-12-26 17:00:35 +01:00
parent af00bcf7c1
commit feddf9c215
8 changed files with 463 additions and 430 deletions

5
src/dev-cli/logging.ts Normal file
View File

@@ -0,0 +1,5 @@
import { inspect } from 'node:util';
export function logDeepObject(object: Record<any, any>) {
console.log(inspect(object, { showHidden: false, depth: null, colors: true }));
}