gulp-more-css
v1.0.0
Published
Minify CSS using more-css & gulp.
Downloads
88
Readme
gulp-more-css
Minify CSS using more-css & gulp.
If you have any difficulties with the output of this plugin, please use the more-css tracker.
Install via npm:
npm install gulp-more-css --save-dev
Example
var gulp = require('gulp');
var moreCSS = require('gulp-more-css');
gulp.task('default', function() {
return gulp.src('./main.css')
.pipe(moreCSS())
.pipe(gulp.dest('./out'));
});
Options
radical
Type: Boolean
Apply further minimization. Defaults to true
.
Contributing
Pull requests are welcome. If you add functionality, then please add unit tests to cover it.
License
MIT © Ben Briggs