Jay Salvat cae9a07951 Clean repo for V2 10 yıl önce
..
node_modules cae9a07951 Clean repo for V2 10 yıl önce
sample cae9a07951 Clean repo for V2 10 yıl önce
.npmignore cae9a07951 Clean repo for V2 10 yıl önce
.travis.yml cae9a07951 Clean repo for V2 10 yıl önce
README.md cae9a07951 Clean repo for V2 10 yıl önce
gulpfile.js cae9a07951 Clean repo for V2 10 yıl önce
index.js cae9a07951 Clean repo for V2 10 yıl önce
package.json cae9a07951 Clean repo for V2 10 yıl önce
test.js cae9a07951 Clean repo for V2 10 yıl önce

README.md

gulp-cssmin

Duplicate of gulp-minify-css

Build Status

minify css using gulp.

Install

Install with npm

npm install --save-dev gulp-cssmin

Example

var gulp = require('gulp');
var cssmin = require('gulp-cssmin');

gulp.task('default', function () {
	gulp.src('src/**/*.css')
		.pipe(cssmin())
		.pipe(rename({suffix: '.min'}))
		.pipe(gulp.dest('dist'));
});

API

cssmin(options)

See the css-min options.

Other options

  • Show loging

showLog : (True, false) to trun on or off of the log

Inspired by

License

MIT @chilijung