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