问题标签 [bower-install]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
449 浏览

bower - Dealing with all the extra stuff created by Bower

I'm confused about the proper way to use Bower. When I install components I get a large bower_components directory that contains much more than just the files I am interested in. For example, if you install jQuery with bower you get a ton of source files.

I only want to keep the files that are absolutely needed in my project to run. Is there a general solution for getting rid of the unneeded files copied down by bower? How do I know what to get rid of? Why are these even there?

Of course, if even if I do delete them, the next time I run bower install they will all come back.

What the deal here? How are you supposed to manage this stuff?

0 投票
0 回答
319 浏览

node.js - “凉亭列表”错误消息

我正在使用 Windows 7 64 位。当我bower list从命令提示符执行命令时,它显示以下错误:

有谁知道是什么导致了这个错误?

0 投票
8 回答
48479 浏览

git - 如何使用私有 git 服务器 (SSH) 安装 bower 包?

编辑这家伙在成功方面做的完全一样,不知道为什么它对我不起作用。

我刚刚git使用公钥/私钥(Centos 6.5)安装并设置了权限/SSH 身份验证。我可以使用 ie 毫无问题地拉/推:

用户名是git,放置的代码/home/git/projects,创建的存储库git --init --shared boilerplate-template

我如何boilerplate-template在另一个项目中要求 Bower?

我已经尝试使用以下 bower.json 文件,但没有运气:

ECMDERR:无法执行“git ls-remote --tags --heads git://code.organization.com:projects/boilerplate-template,退出代码128无法查找code.organization.com(端口项目)...

可悲的是它失败:project了,因为不是端口而是路径。我也试过用ssh://而不是git://

ENOTFOUND:找不到包 ssh://code.organization.com:projects/boilerplate-template。

0 投票
1 回答
55 浏览

bower - 无法更新 Bower - 使用 Polymer

我无法更新 Bower。我已经尝试按照这篇文章的说明进行操作,但无济于事。我设法毫无问题地更新节点。

提前致谢。

0 投票
1 回答
75 浏览

gruntjs - bower 依赖于 CONCAT 到项目

我有一个项目,当前的凉亭依赖项非常适合我。有没有办法将它们连接到项目而无需每次都调用 bower install?

0 投票
0 回答
2323 浏览

angularjs - 带有 Bower 的安装程序 angular-ui-router 给出错误

我正在尝试将 angular-ui-router 添加到我的应用程序中。

但这给了我一个错误。

我也尝试过: bower install angular-ui-router#master 但错误保持不变。

然后我编辑了我的 bower.json 文件并添加了条目:“angular-ui-router”:“0.2.8”并执行了 bower install 命令:

那是我吗 ?

这是我的 bower.json 文件内容:

更新:

firebase 依赖似乎是问题所在。

我尝试了命令:

由于错误消息显示唯一可用的分支是:master 然后我编辑了我的 bower.json 文件以将依赖项更改为“firebase”:“master”并尝试再次安装 bower:

亲切的问候,

斯蒂芬·艾伯特

0 投票
2 回答
623 浏览

node.js - Bower 初始化命令错误

我正在试用 Google Polymer。成功安装了 node.js,如下所示,npm 和 Bower 已安装。但是,当输入“bower init cmd”时,它会给我以下错误:我做错了什么以及如何最好地解决这个问题?运行 Mac OS X (Mav) 提前致谢。

0 投票
1 回答
733 浏览

gruntjs - Yeoman、grunt 和 bower:可以在没有 javascript 文件的情况下安装引导程序吗?

我使用安装引导程序bower install bootstrap

我正在使用 grunt 来构建我的项目。我正在尝试添加引导程序并排除 bootstrap.js 文件。

豪尔bower_components/bootstrap/dist/js/bootstrap.js总是包括在内。

如何排除引导 javascript 文件?

0 投票
2 回答
5567 浏览

ubuntu - Bower 找不到 Git 安装

我在 ubuntu 14.04 上运行 bower,肯定安装了 git。我在makefile中使用如下命令(通过另一个php脚本调用,远程触发):

它给了我以下错误:

但是,如果我自己从终端运行命令,它就可以工作。所以,我很困惑,这里可能有什么问题?

我已经找到了带有类似错误消息的stackoverflow线程,但是它们在不同环境(windows)上的问题与我的情况不匹配。

0 投票
1 回答
6263 浏览

git - bower ECMDERR 执行 git ls-remote --tags 失败,

我是bowergit的新手,当我bower install在 AngularJs 项目目录中运行命令时出现此错误:

我尝试了最流行的解决方案,例如:

并且还安装了 msysgit 以允许命令提示符git 如此处所述,但仍然出现相同的错误。

有没有人遇到过同样的问题?顺便说一句,我在 Win7 64 位机器上运行。