JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 171768
  • Score
    100M100P100Q171355F
  • License Unlicense

PostCSS plugin enabling custom properties sets references

Package Exports

  • postcss-apply

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (postcss-apply) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

postcss-apply

npm version Build Status Coverage Status

PostCSS plugin enabling custom properties sets references

Aka @apply rule.
Spec (editor's draft): https://tabatkins.github.io/specs/css-apply-rule
Browser support: https://www.chromestatus.com/feature/5753701012602880
Refers to postcss-custom-properties for DOMless limitations, although being future proof and spec compliant is the plugin primary goal.

Installation

npm install postcss-apply --save-dev

Usage

var fs = require('fs');
var postcss = require('postcss');
var apply = require('postcss-apply');

var input = fs.readFileSync('input.css', 'utf8');

postcss()
  .use(apply)
  .process(input)
  .then(function (result) {
    fs.writeFileSync('output.css', result.css);
  });

Examples

input:

:root {
  --toolbar-theme: {
    background-color: rebeccapurple;
    color: white;
    border: 1px solid green;
  };
  --toolbar-title-theme: {
    color: green;
  };
}

.Toolbar {
  @apply --toolbar-theme;
}

.Toolbar-title {
  @apply --toolbar-title-theme;
}

output:

.Toolbar {
  background-color: rebeccapurple;
  color: white;
  border: 1px solid green;
}

.Toolbar-title {
  color: green;
}

Credits

Licence

postcss-apply is unlicensed.