Reputation: 30211
Let's say I want to include the latest version of jquery-ui in my bower.json. Is there any way of finding out which versions are available?
I see that I can find available components on http://sindresorhus.com/bower-components/#!/search/jquery-ui but there doesn't seem to be any mention of versions.
Upvotes: 101
Views: 48742
Reputation: 65785
Try bower-update
. It will check for updates and allow you to update packages one-by-one.
From it's own description:
Updates Bower project’s components to the really latest versions, no matter what bower.json requires.
Upvotes: 2
Reputation: 1328
In case you are working with IntelliJ IDEA (or WebStorm), you can use its bower plugin to browse through through all available components find out their latest version:
It also offers a nice tabular view displaying current vs. latest versions of your installed components.
Upvotes: 1
Reputation: 1716
You can use info command to get information
for example:
Open a terminal and type
bower info jquery-ui
You will get a list of available versions as well
BTW: You can search via your terminal with:
bower search jquery-ui
Upvotes: 159