1.1.0 • Published 7 years ago

gulp-stylefmt v1.1.0

Weekly downloads
288
License
MIT
Repository
github
Last release
7 years ago

gulp-stylefmt Build Status

gulp plugin for stylefmt

Installation

$ npm install --save-dev gulp-stylefmt

Usage

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

gulp.task('stylefmt', function () {
  return gulp.src('src/input.css')
    .pipe(stylefmt())
    .pipe(gulp.dest('dist'));
});

License

The MIT License (MIT)

Copyright (c) 2015 - 2016 Masaaki Morishita