JSPM

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

PostCSS plugin enabling cutom 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 cutom properties sets references

Disclaimer:
Just toying around an interesting idea, not even a spec.
The plugin is in a very early/rough state.
Don't use this for serious stuff.

Installation

npm install postcss-apply --save-dev

Usage

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

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

var output = postcss()
  .use(apply)
  .process(css)
  .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-map is unlicensed.