Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save patrickgrey/ea585862c5f506ebfe2048b7d762045d to your computer and use it in GitHub Desktop.
Save patrickgrey/ea585862c5f506ebfe2048b7d762045d to your computer and use it in GitHub Desktop.
Gulp UnCSS ignore regex for bootstrap modal
gulp.task('uncss', () => {
return gulp.src([
'dist/styles/main.css'
])
.pipe(uncss({
html: [
'http://localhost:9000/'
],
ignore: [ /\.modal/]
}))
.pipe(gulp.dest('dist/styles/uncss/'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment