npm.io
0.1.2 • Published 9 years ago

babel-style-autoprefix

Licence
Version
0.1.2
Deps
6
Vulns
6
Weekly
0

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