Any updates on this?
I up this, would be a nice feature.
If one is using some package for Dart/Flutter project, there is a workaround:
Instead of
$ flutter pub global activate package_name
$ executable_name
do this:
dev_dependencies:
package_name:
git:
url: https://github.com/munificent/kittens.git
ref: commit / branch / tag / etc
$ flutter pub get
md5-eccfc4da311bb00d6ff41ad9b96380a7
$ flutter pub run package_name:executable_command
md5-e5168839602f79bec49a5224e1d64ac3
executables:
executable_name: executable_command
Most helpful comment
If one is using some package for Dart/Flutter project, there is a workaround:
Instead of
do this: