diff --git a/src/lib/flags.ts b/src/lib/flags.ts index a2240726e..de993b15e 100644 --- a/src/lib/flags.ts +++ b/src/lib/flags.ts @@ -9,9 +9,9 @@ export const githubFlag = Flags.boolean({ description: 'Create a new GitHub Acti * Used in any command where `key` is a `flag. */ export const keyFlag = Flags.string({ - description: 'ReadMe project API key', + summary: 'ReadMe project API key', required: true, - summary: + description: 'An API key for your ReadMe project. Note that API authentication is required despite being omitted from the example usage. See our docs for more information: https://github.com/readmeio/rdme/tree/v9#authentication', }); @@ -26,9 +26,9 @@ export const titleFlag = Flags.string({ * Used in any command where `version` is a flag. */ export const versionFlag = Flags.string({ + summary: 'ReadMe project version', description: 'If running command in a CI environment and this option is not passed, the main project version will be used. See our docs for more information: https://docs.readme.com/main/docs/versions', - summary: 'ReadMe project version', }); /**