1.0.3 • Published 8 years ago

gulp-css-longhand v1.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

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