Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/purifycss/gulp-purifycss
Removed unused CSS with the gulp build tool
https://github.com/purifycss/gulp-purifycss
Last synced: 11 days ago
JSON representation
Removed unused CSS with the gulp build tool
- Host: GitHub
- URL: https://github.com/purifycss/gulp-purifycss
- Owner: purifycss
- License: mit
- Created: 2015-06-02T15:51:25.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-09-15T13:28:47.000Z (about 5 years ago)
- Last Synced: 2024-09-22T17:07:27.757Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 11.7 KB
- Stars: 336
- Watchers: 12
- Forks: 21
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gulp-purifycss
Clean unnecessary CSS with [PurifyCSS](https://github.com/purifycss/purifycss)
## Information
Packagegulp-purifycss
Description
Clean unnecessary CSSNode 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/'));
});
```