(p)
| 239 | } |
| 240 | |
| 241 | function rmrf(p) { |
| 242 | try { fs.rmSync(p, { recursive: true, force: true }); } catch (e) { /* best effort */ } |
| 243 | } |
| 244 | |
| 245 | // Drop sibling bundles for OTHER versions of this same platform target, keeping |
| 246 | // only keepDir. The self-heal cache otherwise accumulates a full ~50 MB bundle |
no outgoing calls
no test coverage detected