@rmacklin/gulp-purifycss
v0.2.0-pr24
Published
Remove unnecessary css
Downloads
5
Readme
@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/'));
});