我遇到了一些正则表达式问题。
使用 gulp-uncss
我想在忽略选项中添加一些类。
任何以 .no- 开头的类
任何包含 .is- 的类
.no-flexbox {}
.test.is-active {}
.test .is-hidden {}
.pipe(uncss({
html: ['tmp/public_html/*.html'],
ignore: ['/(.is-)(\w)*', '(.no-)(\w)*']
}))
这不太对
我遇到了一些正则表达式问题。
使用 gulp-uncss
我想在忽略选项中添加一些类。
任何以 .no- 开头的类
任何包含 .is- 的类
.no-flexbox {}
.test.is-active {}
.test .is-hidden {}
.pipe(uncss({
html: ['tmp/public_html/*.html'],
ignore: ['/(.is-)(\w)*', '(.no-)(\w)*']
}))
这不太对