Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.217.137.245
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
gulp-cssbeautify /
Delete
Unzip
Name
Size
Permission
Date
Action
LICENSE
1.05
KB
-rw-rw-r--
2022-08-30 11:49
README.md
1.84
KB
-rw-rw-r--
2022-08-30 11:49
index.js
648
B
-rw-rw-r--
2022-08-30 11:49
package.json
1.01
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
# [gulp](https://github.com/wearefractal/gulp)-cssbeautify  [](https://coveralls.io/github/jonkemp/gulp-cssbeautify?branch=master) > [CSS Beautify](https://github.com/senchalabs/cssbeautify) automatically formats your style to be consistent and easy to read Given the following style: ```css .menu{color:red} .navigation{background-color:#333} ``` CSS Beautify will produce: ```css .menu { color: red } .navigation { background-color: #333 } ``` ## Install Install with [npm](https://npmjs.org/package/gulp-cssbeautify) ``` npm install --save-dev gulp-cssbeautify ``` ## Example ```js var gulp = require('gulp'), cssbeautify = require('gulp-cssbeautify'); gulp.task('css', function() { return gulp.src('./styles/*.css') .pipe(cssbeautify()) .pipe(gulp.dest('./styles/')); }); ``` With options: ```js var gulp = require('gulp'), cssbeautify = require('gulp-cssbeautify'); gulp.task('css', function() { return gulp.src('./styles/*.css') .pipe(cssbeautify({ indent: ' ', openbrace: 'separate-line', autosemicolon: true })) .pipe(gulp.dest('./styles/')); }); ``` ## API ### cssbeautify(options) #### options.indent Type: `String` Default: <code>' '</code> Spaces to use for indentation. #### options.openbrace Type: `String` Default: `end-of-line` Values: `end-of-line`, `separate-line` Defines the placement of open curly brace. #### options.autosemicolon Type: `Boolean` Default: `false` Always inserts a semicolon after the last ruleset. ## License MIT © [Jonathan Kemp](http://jonkemp.com)