| commit | 36c07b21ad49f91069fbc11e1690d59c69aad87d | [log] [tgz] |
|---|---|---|
| author | Devon Carew <[email protected]> | Fri May 14 18:56:52 2021 |
| committer | GitHub <[email protected]> | Fri May 14 18:56:52 2021 |
| tree | cfdc531a42802077915bc2e4c090899f57534c66 | |
| parent | 94895b8f5b5b3917f9b2de396a25d21cfebd809e [diff] |
Update pubspec.yaml
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.