Skip to main content

flags

flags

Flags are boolean parameters that are passed to a command.

Usage

Flags are passed as an array of objects, with each object containing the properties of the flag.

{
flags: [
{
name: 'verbose',
description: 'Show additional information',
default: false
}
]
}

Default Values

Default values can be set for flags by providing a value for the default property.

{
flags: [
{
name: 'verbose',
description: 'Show additional information',
default: false
}
]
}

This is used to always have a value present for the flag, even if it is not passed to the command.

Properties

PropertyRequiredType(s)DefaultDescription
nameYstringFlag name
aliasNstringShort alias
descriptionNstringDescription
requiredNbooleanfalseRequired flag
defaultNanyDefault value
tagsNstring/arrayTag(s) to apply in details
globalNbooleanfalseGlobal flag
name: string
alias?: string
description?: string
required?: boolean
default?: any
tags?: string | string[]
global?: boolean

name

The name of the flag. This is the key that the value will be stored under in the command data object.

{
flags: [
{
name: 'verbose'
}
]
}

alias

A short alias for the flag. This can be used in place of the full flag name.

{
flags: [
{
name: 'verbose',
alias: 'v'
}
]
}

In this scenario, --verbose and -v would be interchangeable.

description

Description of the flag. Shows up in the --help menu.

{
flags: [
{
name: 'verbose',
description: 'Show additional information'
}
]
}

required

Whether the flag is required. If set to true, the flag must be passed to the command.

{
flags: [
{
name: 'verbose',
required: true
}
]
}

default

Default value for the flag. If set, the flag will be set to this value if not passed to the command.

{
flags: [
{
name: 'verbose',
default: false
}
]
}

tags

Tag(s) to apply in details. Can be a string or an array of strings.

{
flags: [
{
name: 'verbose',
tags: 'debug'
}
]
}

global

Whether the flag is global. If set to true, the flag can be passed to any command.

Note: Global option functionality is not yet implemented.

{
flags: [
{
name: 'verbose',
global: true
}
]
}

Example

new Command({
flags: [
{
name: 'verbose',
alias: 'v',
description: 'Show additional information',
required: false,
default: false,
tags: ['debug'],
global: false
}
]
})
$ my-command --verbose