Socket
Socket
Sign inDemoInstall

babel-style-autoprefix

Package Overview
Dependencies
209
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    babel-style-autoprefix

Babel CSS autoprifixer for tagged template strings.


Version published
Maintainers
1
Install size
30.8 MB
Created

Readme

Source

Babel Style AutoPrefix

This plugin will take any 'css' tagged template string and automatically run it's code through a css autoprefixer.

Example

const example = css`
  .babel { 
    display: flex 
  }
`;

will output:

const example = css`
  .babel { 
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex 
  }
`;

Run Tests

npm t

Build Plugin

npm run build

FAQs

Last updated on 21 Jan 2017

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc