1

我正确安装了带有凉亭的 es5-shim:

bower install es5-shim

但它不包含主文件,因此在列出来源时,我得到一个空列表:

bower list --sources
{}

我查看了es5-shim 存储库,它只有一个package.json,其中包含“main”的定义:“es5-shim.js”

component.json 是如何生成的?

它似乎错过了主要属性。这是我在安装时在components /es5-shim 中得到的 component.json。

4

1 回答 1

1

Bower 不使用 package.json。当 repo 没有 component.json 时,Bower 将退回并从 repo 名称和 git 标签版本生成一个 component.json,这就是它没有main属性的原因。

于 2013-03-28T14:50:46.280 回答