(title: string)
| 53 | } |
| 54 | |
| 55 | function heading(title: string) { |
| 56 | console.log(`\n── ${title} ${'─'.repeat(Math.max(0, 56 - title.length))}`); |
| 57 | } |
| 58 | |
| 59 | function readPkg(): Record<string, unknown> { |
| 60 | return JSON.parse(readFileSync(PKG_PATH, 'utf-8')); |
no outgoing calls
no test coverage detected
searching dependent graphs…