How to use bower to install from a bitbucket repository

1

Here at the company where I work, we have some libraries that we develop specifically for the company. So I'm using bitbucket, with a private repository.

How can I install via bower , a javascript or css library, which is in a private bitbucket repository? Is there any way to do this?

    
asked by anonymous 14.03.2016 / 15:00

1 answer

3

Install using the repository URL.

Example:

bower install [email protected]:user/biblioteca.git --save

Use --save if you want bower to already include this dependency in your bower configuration file.

    
29.03.2016 / 01:21