没有为Brunch编译供应商CSS文件

时间:2013-09-22 15:15:56

标签: brunch

我遇到brunch@1.7.6没有编译bower_component css文件的问题。与Separating app and vendor css in Brunch相似。只为我生成了css / app.css。 :/

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

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

1 个答案:

答案 0 :(得分:2)

关于x-editable,我遇到了未能包含bower_components css,但发现我只需在bower.json的覆盖部分添加细节(因为它有多个库选项,主要不包括在.bower.json中。

我成功使用了以下覆盖:

"overrides": {
    "x-editable": {
        "main": [
            "dist/bootstrap3-editable/js/bootstrap-editable.js",
            "dist/bootstrap3-editable/css/bootstrap-editable.css"
        ]
    }
}