()
| 121 | } |
| 122 | |
| 123 | export function pmRunCmd() { |
| 124 | const pm = getPackageManager(); |
| 125 | if (pm !== 'npm') { |
| 126 | return pm; |
| 127 | } |
| 128 | return `${pm} run`; |
| 129 | } |
| 130 | |
| 131 | export function panic(msg: string) { |
| 132 | console.error(`\n❌ ${red(msg)}\n`); |
no test coverage detected
searching dependent graphs…