如何使用西兰花指定主鲍尔文件的目标文件夹


嗨,我

正在尝试设置西兰花,但如果我希望我的文件bower_components放在特定的文件夹中,比如说公共/供应商,我该怎么做?我获取主 bower 文件,然后与其余文件合并

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

然后我运行西兰花建立公共

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

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

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

您可以在此处找到更多配置参数

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

相关内容

  • 没有找到相关文章