Skip to main content

Action

Actions are abstracted code operations. They perform specific tasks, such as running a command, installing a package, or updating a file.

An action has 2 phases:

  1. Configuration: The action is created with a set of configuration properties that define how it will be run
  2. Execution: The action is (optionally) provided a context and run

Universal Action Properties

KeyTypeReqDescription
typestringYThe action type to use
sourceBasestringNAction override for scaffoldDir
targetBasestringNAction override for cwd
sourcestringNRelative source path
targetstringNRelative target path
startMessagestringNMessage to display on action start
successMessagestringNMessage to display on action success
errorMessagestringNMessage to display on action failure

Notes:

  • source and sourceBase are used in situations where you are moving, copying, cloning or templating from an origin
  • target and targetBase are used to specify the location the action will be performed (cwd by default)
  • source and target are relative and are appended by their base
  • startMessage, successMessage and errorMessage are custom outputs to provide better messaging to the end user

Roadmap:

  • allow messages to be functions or strings - this will allow for further customization of output
  • add a quiet flag to allow an action to be performed without output

Action List

command

Runs a command in the terminal

PropertyTypeReqDescription
commandstringNCommand to run
flagsarray/stringNList of flags to append

Examples:

new Scaffold({
actions: [{
type: 'command',
command: '',
flags: []
}]
})

npm:install

Runs npm install

Installs specific package(s) if provided, otherwise will install all dependencies listed in package.json.

PropertyTypeReqDescription
packagesarrayNList of packages to install
flagsarray/stringNList of flags to append

See the npm install documentation for additional information on the available flags or package formats.

Examples:

new Scaffold({
actions: [
// run `npm install`
{
type: 'npm:install'
},
// install a specific package
{
type: 'npm:install',
packages: ['@panda/command']
},
// install multiple packages as devDependencies
{
type: 'npm:install',
flags: ['-D'],
packages: ['@types/node', 'typescript']
},
// specify the cwd to run in
{
type: 'npm:install',
target: '{{kebabCase name}}'
}
]
})

npm:uninstall

Runs npm uninstall

Uninstalls specific package(s)

PropertyTypeReqDescription
packagesarrayYList of packages to uninstall
flagsarray/stringNList of flags to append

npm:update

Runs npm update

Updates specific package(s) if provided, otherwise will update all dependencies listed in package.json.

PropertyTypeReqDescription
packagesarrayNList of packages to update
flagsarray/stringNList of flags to append