(infos)
| 1759 | } |
| 1760 | |
| 1761 | function finishProcessingForUninstall(infos) { |
| 1762 | let validInfos = infos.filter((info) => fs.existsSync(info.outputPath)); |
| 1763 | validInfos.forEach(markToBeRemoved); |
| 1764 | |
| 1765 | return validInfos; |
| 1766 | } |
| 1767 | |
| 1768 | function replaceExtension(filePath, newExt) { |
| 1769 | const { dir, name } = path.parse(filePath); |
no test coverage detected
searching dependent graphs…