5.0.7 • Published 6 years ago

neutrino-preset-postcss-autoprefixer v5.0.7

Weekly downloads
2
License
GPL-3.0
Repository
github
Last release
6 years ago

neutrino-preset-postcss-autoprefixer

neutrino npm

Requirements

  • Installed neutrino version 5+

Installing

npm install -D neutrino-preset-postcss-autoprefixer

What is it?

Neutrino preset for supporting postcss autoprefixer

Input:

  display: flex;
  flex-direction: column;

Output:

  display: -ms-flexbox;/* added <--- */
  display: flex;
  -ms-flex-direction: column;/* added <--- */
  flex-direction: column;/* added <--- */

How to use?

Use it is very simple. Just to add neutrino-preset-postcss-autoprefixer after your main neutrino-preset-(web|react|node|etc.)

// package.json
{
  ...
  "browserslist": [
    "> 5%",
    "last 4 versions"
  ],
  "neutrino": {
    "use": [
      "neutrino-preset-web",
      "neutrino-preset-postcss-autoprefixer" // here <---
    ]
  }
  ...
}

browserlist you may set maintained browsers

Other my presets:

5.0.7

6 years ago

5.0.6

7 years ago

5.0.5

7 years ago

5.0.4

7 years ago

5.0.3

7 years ago

5.0.2

7 years ago

5.0.1

7 years ago

5.0.0

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago