(f)
| 77 | const bytes = (files) => [...files].reduce((sum, f) => sum + (graph.get(f)?.size ?? 0), 0); |
| 78 | const mb = (n) => `${(n / 1024 / 1024).toFixed(2)} MB`; |
| 79 | const name = (f) => relative(DIST, f); |
| 80 | |
| 81 | const startup = closure([ENTRY]); |
| 82 | // The lazy server-graph entries Start pulls on first request. |
no outgoing calls
no test coverage detected