Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

fis3-parser-postcss

banama3MIT0.1.2

fis3 postcss plguin

fis3, postcss

readme

fis3-parser-postcss

A postcss plugin for fis3.

Installation

npm install fis3-parser-postcss --save-dev

Example fis3 Config

var autoprefixer = require('autoprefixer')
fis
    .media('dev')
    .match('*.css', {
        parser: fis.plugin("postcss", { plugin: [
            autoprefixer
        ]})
    })
params

It need a options that contains a array of the postcss plugin list.

{ plugin: [
    autoprefixer
]}