(f)
| 106 | |
| 107 | // ---- payload size by repo-size tier ---- |
| 108 | const tier = (f) => f < 200 ? 'S(<200)' : f < 2000 ? 'M(<2000)' : 'L(>=2000)'; |
| 109 | const byTier = {}; |
| 110 | for (const c of cells) { (byTier[tier(c.files || 0)] ??= []).push(c.with.cgOut); } |
| 111 | console.log('\n=== with-arm TOTAL codegraph payload by repo-size tier ==='); |