blob: 4c8b2b9b34fbb81365072ce7f3a89d45772be254 [file] [log] [blame]
# GENERATED BY: test/deps/executables_test.dart
## Section 0
$ tree
├── bar
│ ├── bin
│ │ └── qux.dart
│ └── pubspec.yaml
├── foo
│ ├── bin
│ │ ├── baz.dart
│ │ └── foo.dart
│ └── pubspec.yaml
└── myapp
├── bin
│ └── myapp.dart
├── pubspec.lock
└── pubspec.yaml
-------------------------------- END OF OUTPUT ---------------------------------
## Section 1
$ pub deps --executables
myapp
foo: foo, baz
bar:qux
-------------------------------- END OF OUTPUT ---------------------------------
## Section 2
$ pub deps --executables --dev
myapp
foo: foo, baz
bar:qux
-------------------------------- END OF OUTPUT ---------------------------------
## Section 3
$ pub deps --json
{
"root": "myapp",
"packages": [
{
"name": "myapp",
"version": "0.0.0",
"kind": "root",
"source": "root",
"dependencies": [
"foo",
"bar"
]
},
{
"name": "bar",
"version": "1.0.0",
"kind": "direct",
"source": "path",
"dependencies": []
},
{
"name": "foo",
"version": "1.0.0",
"kind": "direct",
"source": "path",
"dependencies": []
}
],
"sdks": [
{
"name": "Dart",
"version": "0.1.2+3"
}
],
"executables": [
":myapp",
"foo:baz",
"foo",
"bar:qux"
]
}