Skip to main content

Properties

PropertyRequiredType(s)DefaultDescription
actionNfunctionMethod to process data
actionTypesNobjectList of custom action types
argumentsNobject/arrayArgument handler
autoHelpNbooleanfalseToggle for automated help menu
autoVersionNbooleanfalseToggle for automated version output
commandNstringSubcommand name
cwdNstringprocess.cwd()Current working directory
descriptionNstringScaffold description
exitOnErrorNbooleantrueToggle for exiting on error
flagsNarrayList of flags
nameYstringScaffold name
optionsNarrayList of options
promptsNarrayList of prompts
promptTypesNobjectList of custom prompt types
scaffoldDirNstringDirectory where scaffolds are stored
silentNbooleanfalseToggle for output suppression
subcommandsNarray/objectList of subcommands
tasksNarrayList of tasks to perform
taskTimerNbooleanfalseToggle for task timing
titleNstringScaffold title
transformNfunctionMethod to transform data
versionNstringScaffold version

action

Method to process data.

See Properties.action for more information

actionTypes

List of custom action types.

An object that defines custom action types available to the scaffold.

See Properties.actionTypes for more information

arguments

Argument handler. An object or array of objects that define the arguments to parse.

See Properties.arguments for more information

autoHelp

A boolean flag to automatically generate and display the help menu on --help.

See Properties.autoHelp for more information

autoVersion

A boolean flag to automatically output the version on --version.

See Properties.autoVersion for more information

command

The subcommand name, used when the scaffold is a subcommand of another scaffold. Defaults to value of name.

See Properties.command for more information

cwd

The current working directory.

See Properties.cwd for more information

description

A brief description of the scaffold. Used in the help menu.

See Properties.description for more information

exitOnError

A boolean flag to exit if any task fails.

See Properties.exitOnError for more information

flags

A list of available flag parameters to parse.

See Properties.flags for more information

name

(required) The name of the scaffold. Doubles as the subcommand if command is not set.

See Properties.name for more information

options

A list of available key/value parameters to parse.

See Properties.options for more information

prompts

An array of objects that define the prompts to ask the user.

See Properties.prompts for more information

promptTypes

An object that defines custom prompt types available to the scaffold.

See Properties.promptTypes for more information

scaffoldDir

The directory where scaffolds are stored.

See Properties.scaffoldDir for more information

silent

A boolean flag to suppress logging output.

See Properties.silent for more information

subcommands

An array or object that define the subcommands available to the scaffold.

See Properties.subcommands for more information

taskTimer

A boolean flag to time each task.

See Properties.taskTimer for more information

title

The title of the scaffold.

See Properties.title for more information

transform

A method to transform data before reaching the action.

See Properties.transform for more information

version

The version of the scaffold. Used in the help menu.

See Properties.version for more information