0.0.1 • Published 3 months ago

postcss-property-groups v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

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

0.0.1

3 months ago