0.9.0 • Published 3 years ago

gulp-style-format v0.9.0

Weekly downloads
1
License
MIT
Repository
-
Last release
3 years ago

gulp-style-format

A gulp plugin to format css or less.

Information

Installation

npm install gulp-style-format

Basic Usage

var styleFormat = require('gulp-style-format');

gulp.task('format', function () {
  return gulp.src('./css/**/*.css')
    .pipe(styleFormat())
    .pipe(gulp.dest('./public/css'));
});

Use gulp-style-format with gulp-less