我如何使用 broccolijs 指定主要 bower 文件的目标文件夹?

How can I specify with broccolijs the destination folder of the main bower files?

您好,我正在尝试设置西兰花,但如果我希望 bower_components 中的文件位于特定文件夹中,那么 public/vendor 我该怎么做? 我得到了主要的 bower 文件,然后与我的其余文件合并

var findBowerTrees = require('broccoli-bower');
var sourceTrees = [appCss, appJs];
sourceTrees = sourceTrees.concat(findBowerTrees());
module.exports = mergeTrees(sourceTrees, {overwrite: true});

然后我运行西兰花身材public

structure is
--js
--css
--bower_components
in public shoud result
--public
  --js
  --css
  --vendor 

您可以在项目的根目录下创建 .bowerrc 文件。

{
  "directory": "public/vendor/"
}

您可以找到更多配置参数here

注意: 要在 windows 上创建 .bowerrc 文件,请参阅 this SO 问题。