(printTopBorder = true)
| 57 | } |
| 58 | |
| 59 | export function printDevBanner(printTopBorder = true) { |
| 60 | if (printTopBorder) { |
| 61 | logger.log(chalkGrey("-".repeat(54))); |
| 62 | } |
| 63 | |
| 64 | logger.log( |
| 65 | `${chalkGrey("Key:")} ${chalkWorker("Version")} ${chalkGrey("|")} ${chalkTask( |
| 66 | "Task" |
| 67 | )} ${chalkGrey("|")} ${chalkRun("Run")}` |
| 68 | ); |
| 69 | logger.log(chalkGrey("-".repeat(54))); |
| 70 | } |
| 71 | |
| 72 | async function doUpdateCheck(): Promise<string | undefined> { |
| 73 | let update: Result | null = null; |