(depsToUpdate: Dependency[], targetVersion: string)
| 287 | } |
| 288 | |
| 289 | async function updateConfirmation(depsToUpdate: Dependency[], targetVersion: string) { |
| 290 | printUpdateTable(depsToUpdate, targetVersion); |
| 291 | |
| 292 | let confirmMessage = "Would you like to apply those updates?"; |
| 293 | |
| 294 | return await confirm({ |
| 295 | message: confirmMessage, |
| 296 | }); |
| 297 | } |
| 298 | |
| 299 | export async function getPackageJson(absoluteProjectPath: string) { |
| 300 | const packageJsonPath = join(absoluteProjectPath, "package.json"); |
no test coverage detected
searching dependent graphs…