Task Runners
Build your first task
CommandBox> task create --open/**
* Description of task
*/
component {
/**
*
*/
function run() {
print.greenLine( 'Complete!' );
}
}Last updated
Was this helpful?
CommandBox> task create --open/**
* Description of task
*/
component {
/**
*
*/
function run() {
print.greenLine( 'Complete!' );
}
}Last updated
Was this helpful?
Was this helpful?
CommandBox> task run
Complete!