commit | 6dffe2ffe009a9d677465a686ed4db582b599a7b | [log] [tgz] |
---|---|---|
author | Devon Carew <devoncarew@google.com> | Mon Apr 18 12:59:05 2022 -0700 |
committer | GitHub <noreply@github.com> | Mon Apr 18 12:59:05 2022 -0700 |
tree | cfdc531a42802077915bc2e4c090899f57534c66 | |
parent | 94895b8f5b5b3917f9b2de396a25d21cfebd809e [diff] |
Update pubspec.yaml (#46)
A library to reflect on the local pub cache.
pub_cache
lets you reflect on the information in your Pub cache. For example, to find all the applications that have been activated:
PubCache cache = new PubCache(); for (Application app in cache.getGlobalApplications()) { print('activated app: ${app.name}, version: ${app.version}'); }
Some other interesting use cases:
Please file feature requests and bugs at the issue tracker.