Change uses of @checked to covariant, also rename .analysis_options t… (#15)

* Change uses of @checked to covariant, also rename .analysis_options to analysis_options.yaml

* bump version to ready for publish

* Update pubspec.yaml

* Update pubspec.yaml
4 files changed
tree: 77e7e60f027515a6e07cea67f0f8d0b7a582c167
  1. dev/
  2. lib/
  3. test/
  4. .gitignore
  5. .travis.yml
  6. analysis_options.yaml
  7. AUTHORS
  8. CHANGELOG.md
  9. CONTRIBUTING.md
  10. LICENSE
  11. pubspec.yaml
  12. README.md
README.md

Process

Build Status - Coverage Status -

A generic process invocation abstraction for Dart.

Like dart:io, package:process supplies a rich, Dart-idiomatic API for spawning OS processes.

Unlike dart:io, package:process:

  • Can be used to implement custom process invocation backends.
  • Comes with a record-replay implementation out-of-the-box, making it super easy to test code that spawns processes in a hermetic way.