Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ben-eb/gulp-more-css
Minify CSS using more-css & gulp.
https://github.com/ben-eb/gulp-more-css
Last synced: 28 days ago
JSON representation
Minify CSS using more-css & gulp.
- Host: GitHub
- URL: https://github.com/ben-eb/gulp-more-css
- Owner: ben-eb
- License: mit
- Created: 2015-01-18T22:55:40.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-18T22:59:29.000Z (almost 10 years ago)
- Last Synced: 2024-10-12T00:49:20.084Z (about 1 month ago)
- Language: JavaScript
- Size: 117 KB
- Stars: 7
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-MIT
Awesome Lists containing this project
README
# [gulp](https://github.com/gulpjs/gulp)-more-css [![Build Status](https://travis-ci.org/ben-eb/gulp-more-css.svg?branch=master)](https://travis-ci.org/ben-eb/gulp-more-css) [![NPM version](https://badge.fury.io/js/gulp-more-css.svg)](http://badge.fury.io/js/gulp-more-css) [![Dependency Status](https://gemnasium.com/ben-eb/gulp-more-css.svg)](https://gemnasium.com/ben-eb/gulp-more-css)
> Minify CSS using [more-css](https://github.com/army8735/more) & gulp.
*If you have any difficulties with the output of this plugin, please use the [more-css tracker](https://github.com/army8735/more/issues).*
Install via [npm](https://npmjs.org/package/gulp-more-css):
```
npm install gulp-more-css --save-dev
```## Example
```js
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