Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/purifycss/gulp-purifycss

Removed unused CSS with the gulp build tool
https://github.com/purifycss/gulp-purifycss

Last synced: about 2 months ago
JSON representation

Removed unused CSS with the gulp build tool

Awesome Lists containing this project

README

        

# gulp-purifycss

Clean unnecessary CSS with [PurifyCSS](https://github.com/purifycss/purifycss)

## Information

Packagegulp-purifycss

Description
Clean unnecessary CSS

Node Version
>= 0.10

## Usage

```js
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/'));
});
```