startGrinder function

  1. @Deprecated('Use `grind` instead.')
Future startGrinder(
  1. List<String> args, {
  2. bool verifyProjectRoot = true,
})

Start the build process. This should be called at the end of the main() method. If there is a task failure, this method will halt task execution and throw.

Implementation

@Deprecated('Use `grind` instead.')
Future startGrinder(List<String> args, {bool verifyProjectRoot = true}) {
  return runTasks(args, verifyProjectRoot: verifyProjectRoot);
}