addTask function

void addTask(
  1. GrinderTask task
)

Programmatically add a task to the global Grinder instance.

Any calls to this should occur before the call to grind.

Implementation

void addTask(GrinderTask task) => grinder.addTask(task);