1

我遇到了一些正则表达式问题。

使用 gulp-uncss

我想在忽略选项中添加一些类。

任何以 .no- 开头的类

任何包含 .is- 的类

.no-flexbox {}
.test.is-active {}
.test .is-hidden {}


.pipe(uncss({
    html: ['tmp/public_html/*.html'],
    ignore: ['/(.is-)(\w)*', '(.no-)(\w)*']
}))

这不太对

4

1 回答 1

2

您的正则表达式看起来不完整。也许你应该这样做

.pipe(uncss({
    html: ['tmp/public_html/*.html'],
    ignore: ['/\.no-\w+/g', '/\.\w+\s?\.is-\w+/g']
}))
于 2016-04-01T14:12:29.343 回答