有没有办法让 broccoli less 编译器尊重 CSS 文件的多个 outputPaths 配置?

Is there a way to make the broccoli less compiler respect the multiple outputPaths config for CSS files?

我正在使用 ember-cli 0.1.5,

我想为 app/styles 文件夹中的每个 'skin-*.less' 文件构建一个 css 文件。这适用于普通 CSS 在我的 Brocfile.js:

中使用以下配置
var app = new EmberApp({
    outputPaths: {
        app: {
            css: {
                'skin-light': '/assets/skin-light.css',
                'skin-dark': '/assets/skin-dark.css'
            }
        }
    }
});

安装带有 'ember install:addon ember-cli-less' 的 LESS 预编译器后,此配置不受尊重,而是 'ember build' 查找 app/styles/app.less.

有没有办法让 broccoli less 编译器遵守 CSS 个文件的多个输出路径配置?

appear not;那是针对该功能的拉取请求,但据报道它存在错误。

此功能现已在 ember-cli-less v1.1.0

中可用