Shelljs instance, useful to run scripts. For more information refer to shelljs npm package.
Function that executes a command using shelljs. If the exit code is not 0 it throws an exception.
Optional
errorMessage: stringFunction that executes a command using javascript spawn. The result is a resolved promise when the exit code is 0, otherwise it is a rejected promise.
Optional
params: string[]Function that executes a command using javascript spawnSync. The result is a resolved promise when the exit code is 0, otherwise it is a rejected promise.
Optional
params: string[]
CLI utilities, useful to run commands.