(infos)
| 1751 | } |
| 1752 | |
| 1753 | function finishProcessingForInstall(infos) { |
| 1754 | infos.forEach(markIdenticalToBeSkipped); |
| 1755 | |
| 1756 | let infosNeedingConfirmation = infos.reduce(gatherConfirmationMessages, []); |
| 1757 | |
| 1758 | return sequence(infosNeedingConfirmation).then(() => infos); |
| 1759 | } |
| 1760 | |
| 1761 | function finishProcessingForUninstall(infos) { |
| 1762 | let validInfos = infos.filter((info) => fs.existsSync(info.outputPath)); |
nothing calls this directly
no test coverage detected
searching dependent graphs…