Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/akiran/gulp-sassbeautify

Beautify sass and scss with gulp
https://github.com/akiran/gulp-sassbeautify

Last synced: about 1 month ago
JSON representation

Beautify sass and scss with gulp

Awesome Lists containing this project

README

        

# Work in progress

# gulp-sassbeautify
beautify sass and scss with gulp

## Install
```bash
npm install gulp-sassbeautify --save-dev
```

## Usage
```js
var gulp = require('gulp');
var sassbeautify = require('gulp-sassbeautify');

gulp.task('beautify-scss', function () {
gulp.src('src/**/*.scss')
.pipe(sassbeautify())
.pipe(gulp.dest('src'))
})
```