0

我在我的 gruntfile.js 中使用 grunt-postcss 并且一切正常,除了 postcss-bem-linter 如果不遵循 BEM 规则,它应该在控制台中记录警告。这是 gruntfile.js 中的配置片段:

var preprocessorsAfterSprites = [
    require('postcss-bem-linter')(function (a) {
        console.log(a);
    }), // this just doesn't want to work right now
    require('postcss-reporter')
];

function getPostCssPreprocessors(name) {
    return preprocessorsAfterSprites;
}

grunt.initConfig({
    postcss: {
        options: {
            map: { inline: false }
        },
        golden: {
            src: '<%= dirs.pcss %>/golden/main.scss',
            dest: '<%= dirs.css %>/golden.css',
            options: {
                processors: getPostCssPreprocessors('golden')
            }
        }
    }
});

当我尝试输入 grunt postcss:golden 时,控制台日志没有任何输出。任何想法为什么?

4

1 回答 1

1

postcss-bem-linter 不接受回调(https://github.com/postcss/postcss-bem-linter)。所以我不知道你为什么认为这require('postcss-bem-linter')(function (a) { console.log(a); })应该有效。

于 2015-09-27T15:17:27.260 回答