d119cb064a
CI lint failed with: process-message.ts:127:6 error Blocks are nested too deeply (5). Maximum allowed is 4 max-depth The previous shape nested `if (pnsToResolve.length) → try → if (mappings) → for → if (pn && lid)` = 5 levels. Flattened to 4 by: - Using `mappings ?? []` so the for-of can iterate without an outer guard - Inverting the inner predicate to `if (!pn || !lid) continue` No behavior change. CI should now pass.