如何用凉亭安装整个git repo

时间:2016-08-08 18:49:03

标签: git bower

我想使用bower安装jquery插件chosen。我一直在运行以下命令:

bower install chosen --save

当它安装它虽然它只获取所有编译的文件但没有得到原始的sass文件。有没有办法让bower下载整个存储库,以便我也获得源文件?

1 个答案:

答案 0 :(得分:1)

chosen包注册了https://github.com/harvesthq/chosen-package

根据Bower doc,您可以使用其git端点安装所选的源:

<强>步骤:

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

然后你会在bower_component/chosen中看到整件事。