dart-sdk/pkg/dartdev
Sigurd Meldgaard eb5fea9f3d Use pub embedding to run test in dart test
Now a `pub get` will be run implicitly if needed.
(This happens in getExecutableForCommand from the pub package).

Change-Id: I9eca9b6d8761a3035f21c0f86653c87710b9d229
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/171281
Commit-Queue: Sigurd Meldgaard <sigurdm@google.com>
Reviewed-by: Jonas Jensen <jonasfj@google.com>
2020-11-10 14:42:25 +00:00
..
bin [dartdev] Remove unused dart:async import 2020-09-02 17:37:57 +00:00
doc A document in which to capture dartdev design principles 2020-07-29 21:53:48 +00:00
lib Use pub embedding to run test in dart test 2020-11-10 14:42:25 +00:00
test Use pub embedding to run test in dart test 2020-11-10 14:42:25 +00:00
.gitignore [dartdev] add a dartdev 'create' command 2020-02-02 02:23:13 +00:00
analysis_options.yaml [dartdev] adjust the lints and general comment cleanup 2020-09-24 20:21:27 +00:00
CHANGELOG.md Initial and intentionally minimal pkg/dartdev/ package.  This includes some initial CLI utilities and test file. 2020-01-21 18:21:47 +00:00
LICENSE Initial and intentionally minimal pkg/dartdev/ package.  This includes some initial CLI utilities and test file. 2020-01-21 18:21:47 +00:00
pubspec.yaml [Dart CLI] Embed pub in dartdev 2020-11-06 08:30:12 +00:00
README.md [dartdev] a few more updates to the dartdev tool help 2020-08-31 22:31:40 +00:00

Dart CLI tooling

A command-line utility for Dart development.

Usage: dart [<vm-flags>] <command|dart-file> [<arguments>]

Global options:
-h, --help                 Print this usage information.
-v, --verbose              Show additional command output.
    --version              Print the Dart SDK version.
    --enable-analytics     Enable anonymous analytics.
    --disable-analytics    Disable anonymous analytics.

Available commands:
  analyze   Analyze the project's Dart code.
  compile   Compile Dart to various formats.
  create    Create a new project.
  format    Idiomatically format Dart source code.
  pub       Work with packages.
  run       Run a Dart program.
  test      Run tests in this package.

Run "dart help <command>" for more information about a command.
See https://dart.dev/tools/dart-tool for detailed documentation.

Contributing

If you'd like to contribute to the Dart CLI tool, please start by reading the contribution guidelines for the Dart project. Then familiarize yourself with the [design principles][design] that guide this tool's UX.

Features and bugs

Please file feature requests and bugs in the Dart SDK [issue tracker][tracker] with label area-dart-cli.

[design] https://github.com/dart-lang/sdk/blob/master/pkg/dartdev/doc/design.md [tracker]: https://github.com/dart-lang/sdk/labels/area-dart-cli