6

我遇到了 brunch@1.7.6 没有编译 bower_component css 文件的问题。类似于在早午餐中分离应用程序和供应商 css。只有 css/app.css 会为我生成。:/

{
  stylesheets: {
    joinTo: {
      'css/app.css': /^app/,
      'css/vendor.css': /^bower_components/
    }
}

如果我做错了什么,请告诉我。当我使用 brunch@1.6.7 时,一切似乎都很好。配置是否随着内置凉亭的介绍而改变?

4

1 回答 1

2

关于x-editable,我遇到了包含bower_componentscss 的失败,但发现我只需要在 overrides 部分中添加细节bower.json(因为它有多个库选项,所以 main 不包含在 中.bower.json)。

我成功使用了以下覆盖:

"overrides": {
    "x-editable": {
        "main": [
            "dist/bootstrap3-editable/js/bootstrap-editable.js",
            "dist/bootstrap3-editable/css/bootstrap-editable.css"
        ]
    }
}
于 2014-07-10T19:05:59.353 回答