From c06fb33353f07df0d0045cb8a80a5ce71e096905 Mon Sep 17 00:00:00 2001 From: Beau Raines Date: Sun, 22 Sep 2024 20:53:02 -0700 Subject: [PATCH] feat: short alias for description on start command Adds a short `-d` to set the description on the start command. Resolves 193 --- cmds/startTimeEntry.mjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmds/startTimeEntry.mjs b/cmds/startTimeEntry.mjs index e85dac4..7350a4c 100644 --- a/cmds/startTimeEntry.mjs +++ b/cmds/startTimeEntry.mjs @@ -5,7 +5,8 @@ export const command = 'start' export const desc = 'Starts a time entry' export const builder = { - description: { + d: { + alias: ['description'], describe: 'Time entry name', type: 'string:' },