grinder 0.4.1 copy "grinder: ^0.4.1" to clipboard
grinder: ^0.4.1 copied to clipboard

outdatedDart 1 only

Grinder - a task based, dependency aware build system.

Grinder #

Grinder - a task based, dependency aware build system.

Build Status

Intro #

A library and tool to drive a command-line build.

Grinder build files are entirely specified in Dart code. This allows you to write and debug your build files with the same tools you use for the rest of your project source.

Generally, a Grinder implementation will look something like this:

void main([List<String> args]) {
  defineTask('init', taskFunction: init);
  defineTask('compile', taskFunction: compile, depends: ['init']);
  defineTask('deploy', taskFunction: deploy, depends: ['compile']);
  defineTask('docs', taskFunction: deploy, depends: ['init']);
  defineTask('all', depends: ['deploy', 'docs']);

  startGrinder(args);
}

init(GrinderContext context) {
  context.log("I set things up");
}

...

Tasks to run are specified on the command line. If a task has dependencies, those dependent tasks are run before the specified task.

Command-line usage #

usage: dart grinder.dart <options> target1 target2 ...

valid options:
-h, --help    show targets but don't build
-d, --deps    display the dependencies of targets

API documentation #

Documentation is available here.

109
likes
0
pub points
95%
popularity

Publisher

unverified uploader

Grinder - a task based, dependency aware build system.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

args

More

Packages that depend on grinder