babel-style-autoprefix

v0.1.2
Babel CSS autoprifixer for tagged template strings.

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

npm i babel-style-autoprefix

Metadata

  • Unknown
  • Whatever
  • Nick Randall
  • released 1/21/2017

Downloads

Maintainers