我正在制作一个使用Twitter凉亭的新项目。我创建了一个component.json
以维护我的所有依赖,如jquery。然后运行bower install
,将所有内容安装在名为的文件夹中components
。但是我需要将组件安装在其他文件夹中,例如public/components
。
我尝试将我的components.json编辑为:
{
"name": "test",
"version": "1.0.0",
"directory": "public/",
"dependencies": {
"jquery": "*"
}
}
要么:
{
"name": "test",
"version": "1.0.0",
"componentsDirectory": "public/",
"dependencies": {
"jquery": "*"
}
}
如https://github.com/twitter/bower/pull/94所示,但它不起作用。
The value of the json property from .bowerrc is no longer used
,我猜所有"directory"
属性都可以。对?github.com/bower/bower/blob/master/CHANGELOG.md