()
| 9 | const RESOLVABLE_EXTENSIONS = ['.ts', '.tsx', '.js', '.jsx', '.mjs', '.cjs'] as const; |
| 10 | |
| 11 | export function resolveDaemonCodeSignature(): string { |
| 12 | const entryPath = process.argv[1]; |
| 13 | if (!entryPath) return 'unknown'; |
| 14 | return computeDaemonCodeSignature(entryPath); |
| 15 | } |
| 16 | |
| 17 | export function computeDaemonCodeSignature( |
| 18 | entryPath: string, |
no test coverage detected