我需要用 Bower管理CryptoJS 。该项目托管在 code.google.com 上。可以作为zip 文件或通过SVN下载。
Bower 可以下载解压缩的 zip 文件或从 SVN 下载所有组件并将它们放在crypto
文件夹中吗?
.bowerrc
文件,定义下载文件夹:
{
"directory": "app/vendor"
}
我试过这个component.json
文件(失败,下载页面本身):
{
"name": "Backbone Client",
"version": "1.0.0",
"dependencies": {
"crypto": "http://crypto-js.googlecode.com/svn/tags/3.1.2/build/components/"
}
}
另一个尝试(hmac.js
覆盖core.js
,它被保存为index.js
):
{
"name": "Backbone Client",
"version": "1.0.0",
"dependencies": {
"crypto":
"http://crypto-js.googlecode.com/svn/tags/3.1.2/build/components/core.js",
"crypto":
"http://crypto-js.googlecode.com/svn/tags/3.1.2/build/components/hmac.js"
}
}