shrthnd makes your CSS files lighter and more readable
Issues with the output should be reported on the shrthnd issue tracker.
$ npm install --save gulp-shorthand
var gulp = require('gulp');
var shorthand = require('gulp-shorthand');
gulp.task('default', function () {
return gulp.src('src/index.css')
.pipe(shorthand())
.pipe(gulp.dest('dest'));
});
MIT © Kevin Mårtensson