(targetNextVersion: string)
| 63 | } |
| 64 | |
| 65 | function endMessage(targetNextVersion: string) { |
| 66 | console.log() |
| 67 | if (major(targetNextVersion) === 15) { |
| 68 | console.log( |
| 69 | pc.white( |
| 70 | pc.bold( |
| 71 | `Please review the local changes and read the Next.js 15 migration guide to complete the migration.` |
| 72 | ) |
| 73 | ) |
| 74 | ) |
| 75 | console.log( |
| 76 | pc.underline( |
| 77 | 'https://nextjs.org/docs/canary/app/building-your-application/upgrading/version-15' |
| 78 | ) |
| 79 | ) |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | const cwd = process.cwd() |
| 84 |
no test coverage detected