()
| 20 | } |
| 21 | |
| 22 | function hashRequirements(): string { |
| 23 | try { |
| 24 | const content = readFileSync(getRequirementsPath(), 'utf-8') |
| 25 | return createHash('sha256').update(content).digest('hex') |
| 26 | } catch { |
| 27 | return '' |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | // ─── Environment ───────────────────────────────────────────────────────────── |
| 32 |
no test coverage detected