derry 1.0.2 copy "derry: ^1.0.2" to clipboard
derry: ^1.0.2 copied to clipboard

outdated

Derry is a script manager for Dart. It helps you define script shortcuts and use them effortlessly, and performantly as it should be.

example/main.dart

// Check the repository for [derry.yaml] file and more informative example
// [derry.yaml] will probably look like this
//
// version: dart --version # example that stderr is also shown
// ping: ping google.com && echo ok # example that stdout is served with stream
// # example for list commands
// list:
//   - echo test
//   - echo done
// # example for advanved configurations
// run_once:
//   (execution): once
//   (scripts):
//     - echo test
//     - exit
//     - echo "this wont be called"
// # example for subcommands
// prep:
//   - echo step 1
//   - echo step 2
// test: # call with derry test
//   - $prep
//   - echo pub run test
// build: # call with derry build
//   - \$prep # should not work
//   - echo flutter build
// nested: # example for nested scripts
//   foo:
//     - echo bar

void main() {
  print('Derry.');
}
208
likes
0
pub points
87%
popularity

Publisher

verified publisherfrenco.dev

Derry is a script manager for Dart. It helps you define script shortcuts and use them effortlessly, and performantly as it should be.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

args, console, equatable, ffi, string_similarity, yaml

More

Packages that depend on derry