blob: 910210e8f0c1f2999a3b7cce9192524a83fd3b8a [file] [log] [blame]
# GENERATED BY: test/deps/executables_test.dart
## Section 0
$ tree
|-- foo-1.0
| |-- bin
| | '-- bar.dart
| '-- pubspec.yaml
|-- foo-2.0
| |-- bin
| | |-- bar.dart
| | '-- baz.dart
| '-- pubspec.yaml
'-- myapp
|-- pubspec.lock
'-- pubspec.yaml
-------------------------------- END OF OUTPUT ---------------------------------
## Section 1
$ pub deps --executables
foo: bar, baz
-------------------------------- END OF OUTPUT ---------------------------------
## Section 2
$ pub deps --executables --dev
foo: bar, baz
-------------------------------- END OF OUTPUT ---------------------------------
## Section 3
$ pub deps --json
{
"root": "myapp",
"packages": [
{
"name": "myapp",
"version": "0.0.0",
"kind": "root",
"source": "root",
"dependencies": [
"foo"
]
},
{
"name": "foo",
"version": "2.0.0",
"kind": "direct",
"source": "path",
"dependencies": []
}
],
"sdks": [
{
"name": "Dart",
"version": "0.1.2+3"
}
],
"executables": [
"foo:bar",
"foo:baz"
]
}