0.2.0-pr24 • Published 4 years ago

@rmacklin/gulp-purifycss v0.2.0-pr24

Weekly downloads
24
License
MIT
Repository
github
Last release
4 years ago

@rmacklin/gulp-purifycss

This is a fork of gulp-purifycss which includes the changes from PR #24 to remove the dependency on the deprecated gulp-util package.

The original README follows.

gulp-purifycss

Clean unnecessary CSS with PurifyCSS

Information

Usage

var purify = require('gulp-purifycss');

gulp.task('css', function() {
  return gulp.src('./public/app/example.css')
    .pipe(purify(['./public/app/**/*.js', './public/**/*.html']))
    .pipe(gulp.dest('./dist/'));
});