fela-beautifier
v12.2.1
Published
Fela enhancer to beautify CSS output
Downloads
16,476
Readme
fela-beautifier
Deprecated: This package is deprecated since we no longer render CSS to
textContent
indevMode
but useinsertRule
all the way. It will be removed with the next major version release.
The beautifier enhancer is a developer tool that automatically formats the rendered CSS markup on every change. It uses cssbeautify to achieve this.
Installation
yarn add fela-beautifier
You may alternatively use npm i --save fela-beautifier
.
Usage
import { createRenderer } from 'fela'
import beautifier from 'fela-beautifier'
const renderer = createRenderer({
enhancers: [beautifier()],
})
Configuration
Options
Uses the same options as cssbeautify does.
| Option | Value | Default | Description |
| ------------- | ------------------------------ | -------------- | ---------------------------------------------------- |
| ident | (string) |
(2 spaces) | a string used for the indentation of the declaration |
| openbrace | end-of-line
, separate-line
| end-of-line
| placement of open curly brace |
| autosemicolon | (boolean) | false
| insert semicolon after the last rule |
Example
import { createRenderer } from 'fela'
import beautifier from 'fela-beautifier'
const beautifyEnhancer = beautifier({
openbrace: 'separate-line',
autosemicolon: 'false',
ident: ' ',
})
const renderer = createRenderer({
enhancers: [beautifyEnhancer],
})
Example
License
Fela is licensed under the MIT License. Documentation is licensed under Creative Commons License. Created with ♥ by @robinweser and all the great contributors.