From c01bf2725f58cf6dabb4b913e72e05e0d4bbe72a Mon Sep 17 00:00:00 2001 From: Beau Raines Date: Sun, 22 Sep 2024 20:56:00 -0700 Subject: [PATCH] feat: short alias for description on start command (#197) 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:' },