Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

gulp-stylefmt

morishitter3.5kMIT1.1.0

gulp plugin for stylefmt

gulpplugin, stylefmt, css, format

readme

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