babel-style-autoprefix

0.1.2 • Public • Published

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

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.1.2
    1
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.1.2
    1
  • 0.1.1
    1
  • 0.1.0
    0
  • 0.0.2
    0

Package Sidebar

Install

npm i babel-style-autoprefix

Weekly Downloads

2

Version

0.1.2

License

none

Last publish

Collaborators

  • nicksrandall