Gulp-uncss 忽略选项

Gulp-uncss ignore option

忽略选项似乎对我不起作用。

我正在执行以下操作:

    .pipe(plugins.uncss({
        html: glob.sync('./**/*.{csh,h}tml'),
        ignore: ['.active']
    })

有人能帮忙吗?

尝试为您的 ignore 选项使用正则表达式:

.pipe(plugins.uncss({
  html: glob.sync('./**/*.{csh,h}tml'),
  ignore: ['/active/']
})