luchsamapparat / postcss-property-groups

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

postcss-property-groups

Install

npm i -D postcss-property-groups

Usage

Node.js

const postcss = require("postcss");
const { plugin } = require("postcss-property-groups");

postcss(plugin)
  .process("* { color: red; }", {
    from: undefined,
  })
  .then((result) => {
    console.log(result.css);
  });

Options

plugin(options?: Options);

interface Options {}

Changelog

CHANGELOG.md

About

License:MIT License


Languages

Language:TypeScript 88.9%Language:JavaScript 11.1%