Jay Salvat cae9a07951 Clean repo for V2 10 år sedan
..
node_modules cae9a07951 Clean repo for V2 10 år sedan
sample cae9a07951 Clean repo for V2 10 år sedan
.npmignore cae9a07951 Clean repo for V2 10 år sedan
.travis.yml cae9a07951 Clean repo for V2 10 år sedan
README.md cae9a07951 Clean repo for V2 10 år sedan
gulpfile.js cae9a07951 Clean repo for V2 10 år sedan
index.js cae9a07951 Clean repo for V2 10 år sedan
package.json cae9a07951 Clean repo for V2 10 år sedan
test.js cae9a07951 Clean repo for V2 10 år sedan

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