Détail du package

gulp-css-longhand

hemanth16MIT1.0.3

Gulp plugin to expand CSS

gulpplugin, css, expand, longhand

readme

gulp-css-longhand Build Status

gulp plugin to expand CSS.

Install

$ npm install --save-dev gulp-css-longhand

Usage

var gulp = require('gulp');
var cssLonghand = require('gulp-css-longhand');

gulp.task('default', function () {
    return gulp.src('src/shortHand.css')
        .pipe(cssLonghand())
        .pipe(gulp.dest('dist'));
});

License

MIT © hemanth.hm