| commit | fb4f724c1abac8da135b04ecc7d9b76a6ed96fbd | [log] [tgz] |
|---|---|---|
| author | Devon Carew <[email protected]> | Fri Feb 26 00:20:29 2021 |
| committer | Devon Carew <[email protected]> | Fri Feb 26 00:20:29 2021 |
| tree | f7e6f17cfa0a7b0dea10e4815757a2ba1630846e | |
| parent | a10b042e6a3c4d58b3c2ca89e2a882eda6d054bf [diff] |
rev to a new major version
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.