Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/akiran/gulp-sassbeautify
- Owner: akiran
- Created: 2015-03-05T03:11:23.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-05T04:15:25.000Z (almost 10 years ago)
- Last Synced: 2024-10-14T15:38:10.898Z (3 months ago)
- Language: JavaScript
- Size: 117 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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'))
})
```