Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find available versions for a bower dependency

Tags:

bower

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.

like image 207
opsb Avatar asked Jan 20 '14 19:01

opsb


People also ask

How do I update my bower package?

If there aren't that many bower packages you have installed, try writing bower install [package_name] --save . This will just update your bower. json file.

Is bower deprecated?

Bower has been deprecated by its creators The open source project continues to be maintained for the benefit of existing users, but this is a prime reason not to continue using the platform.

What is bower dependency?

Bower is a great dependency manager that's specially created to help you manage different frontend libraries. It reduces the time and energy you need to spend hunting around the web for libraries like Susy and jQuery by helping you install, update or delete them with a single command.


1 Answers

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 
like image 54
user2461271 Avatar answered Sep 22 '22 13:09

user2461271