feat(cli): prompt to create author if none found when adding link

This commit is contained in:
Cory Dransfeldt 2025-06-08 19:59:30 -07:00
parent 91621b120a
commit 328464670d
No known key found for this signature in database
5 changed files with 56 additions and 22 deletions

View file

@ -18,7 +18,7 @@ export const runTasksMenu = async () => {
{
type: 'list',
name: 'task',
message: 'Select a task to run:',
message: 'Select a task to perform:',
choices: TASKS.map(t => ({ name: t.name, value: t.handler }))
}
]);