Socket
Socket
Sign inDemoInstall

stylecow-plugin-prefixes

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stylecow-plugin-prefixes

Stylecow plugin to add vendor prefixes automatically.


Version published
Weekly downloads
10
Maintainers
1
Weekly downloads
 
Created
Source

stylecow plugin prefixes

Build Status

Stylecow plugin to add automatically all vendor prefixes needed. It uses the caniuse database to get the data about the browsers support.

You write:

.foo {
    user-select: none;
    hyphens: auto;
    transition: background-color 2s;
}

And stylecow converts to:

.foo {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    -moz-transition: background-color 2s;
    -webkit-transition: background-color 2s;
    -o-transition: background-color 2s;
    transition: background-color 2s;
}

More demos in the tests folder

FAQs

Package last updated on 18 Apr 2017

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc