小编典典

如何更改 Bower 的默认组件文件夹?

all

我正在制作一个使用来自 twitter 的 bower 的新项目。我创建了一个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所示,但它不起作用。


阅读 98

收藏
2022-03-14

共1个答案

小编典典

在项目根目录(而不是您的主目录)中创建一个Bower
配置文件,其内容为:.bowerrc

{
  "directory" : "public/components"
}

再跑bower install

2022-03-14