How to install entire git repo with bower -


i want install jquery plugin chosen using bower. i've been running following command:

bower install chosen --save 

when installs though gets compiled files , doesn't original sass files. there way bower download entire repository source files well?

the chosen package registerd https://github.com/harvesthq/chosen-package

according bower doc, can install chosen source git endpoint :

steps:

bower uninstall --save chosen  bower install --save https://github.com/harvesthq/chosen.git 

then see whole thing in bower_component/chosen.


Comments