Gulp-uncss忽略选项

时间:2015-01-14 16:43:04

标签: javascript gulp uncss

忽略选项似乎对我没用。

我正在做以下事情:

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

有人可以帮忙吗?

1 个答案:

答案 0 :(得分:4)

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

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