UNPKG

magefront-plugin-postcss

Version:

PostCSS plugin for **magefront**.

12 lines (9 loc) 271 B
import { Pattern } from 'fast-glob' import { Plugin } from 'magefront' import { AcceptedPlugin } from 'postcss' export interface Options { src?: string | string[] ignore?: Pattern[] plugins?: AcceptedPlugin[] } export default function (options?: Options): Plugin