(sandbox, relPath)
| 164 | |
| 165 | // ── Telemetry helpers ────────────────────────────────────────────────────────── |
| 166 | |
| 167 | function countJsonlLines(sandbox, relPath) { |
| 168 | const full = path.join(sandbox, relPath); |
| 169 | if (!fs.existsSync(full)) return 0; |
| 170 | return fs.readFileSync(full, 'utf8').split('\n').filter(Boolean).length; |
| 171 | } |
| 172 | |
| 173 | // ── Campaign helpers ─────────────────────────────────────────────────────────── |