Skip to content

nicksrandall/babel-style-autoprefix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published