postcss-flexibility

3.0.0 • Public • Published

PostCSS Flexibility

NPM version Build Status Dependency Status devDependency Status Coverage Status XO code style

PostCSS plugin for Flexibility.

.foo {
    display: flex;
}

will be processed to:

.foo {
    -js-display: flex;
    display: flex;
}

Installation

$ npm install --save-dev postcss postcss-flexibility

Usage

postcss([ require('postcss-flexibility') ])

See PostCSS docs for examples for your environment.

Excluding rules

You can exclude rule from transformation by adding /* flexibility-disable */ comment.

.foo {
    /* flexibility-disable */
    display: flex;
}

will be processed to:

.foo {
    /* flexibility-disable */
    display: flex;
}

License

MIT © Valentin Semirulnik

Dependencies (0)

    Dev Dependencies (17)

    Package Sidebar

    Install

    npm i postcss-flexibility

    Weekly Downloads

    14,919

    Version

    3.0.0

    License

    MIT

    Unpacked Size

    6.4 kB

    Total Files

    5

    Last publish

    Collaborators

    • 7rulnik