bower / registry

The Bower registry
https://registry.bower.io/packages
MIT License
292 stars 66 forks source link

Fetch latest package version #239

Closed segrey closed 7 years ago

segrey commented 7 years ago

Is there a way to fetch latest version for a package? Tried https://bower.herokuapp.com/packages/jquery, but it doesn't contain version:

{"name":"jquery","url":"https://github.com/jquery/jquery-dist.git"}
sheerun commented 7 years ago

you can use bower info jquery or use git ls-remote to list tags of remote repository. bower uses tags that look like semver for versions (with and without v prefix)

segrey commented 7 years ago

Thanks a lot!