(p)
| 228 | } |
| 229 | |
| 230 | function rmrf(p) { |
| 231 | try { fs.rmSync(p, { recursive: true, force: true }); } catch (e) { /* best effort */ } |
| 232 | } |
| 233 | |
| 234 | // Drop sibling bundles for OTHER versions of this same platform target, keeping |
| 235 | // only keepDir. The self-heal cache otherwise accumulates a full ~50 MB bundle |
no outgoing calls
no test coverage detected