()
| 27 | }; |
| 28 | |
| 29 | function getLastKnownGoodFilePath() { |
| 30 | const lkg = path.join(folderUtils.getCorepackHomeFolder(), `lastKnownGood.json`); |
| 31 | debugUtils.log(`LastKnownGood file would be located at ${lkg}`); |
| 32 | return lkg; |
| 33 | } |
| 34 | |
| 35 | export async function getLastKnownGood(): Promise<Record<string, string>> { |
| 36 | let raw: string; |
no test coverage detected
searching dependent graphs…