私はいくつかの正規表現の問題を抱えています。
gulp-uncss の使用
いくつかのクラスを無視オプションに追加したいと思います。
.no- で始まるすべてのクラス
.is- を含むクラス
.no-flexbox {}
.test.is-active {}
.test .is-hidden {}
.pipe(uncss({
html: ['tmp/public_html/*.html'],
ignore: ['/(.is-)(\w)*', '(.no-)(\w)*']
}))
これは正しくありません