🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

fela-plugin-prefixer

Package Overview
Dependencies
Maintainers
2
Versions
112
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fela-plugin-prefixer

Fela plugin to add vendor prefixes

12.2.1
latest
Source
npm
Version published
Weekly downloads
19K
-2.4%
Maintainers
2
Weekly downloads
 
Created
Source

fela-plugin-prefixer

npm version npm downloads Bundlephobia

Uses stylis to add vendor prefixes to both property and value.

Installation

yarn add fela-plugin-prefixer

You may alternatively use npm i --save fela-plugin-prefixer.

Usage

Make sure to read the documentation on how to use plugins.

import { createRenderer } from 'fela'
import prefixer from 'fela-plugin-prefixer'

const renderer = createRenderer({
  plugins: [prefixer()],
})

Example

Input

{
  display: 'flex',
  appearance: 'none'
}

Output

{
  display: 'webkit-box;display:-webkit-flex;display:flex',
  WebkitAppearance: 'none;-moz-appearance:none;appearance:none'
}

License

Fela is licensed under the MIT License.
Documentation is licensed under Creative Commons License.
Created with ♥ by @robinweser and all the great contributors.

Keywords

fela

FAQs

Package last updated on 16 Nov 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts