A library to reflect on the local pub cache.
As per https://github.com/google/pub_cache/issues/48 we've discontinued this package. It was no longer used by the Dart team and has limited ecosystem usage. Possible recourse for people who are using it is listed in that issue.
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.