misc-tjund/postcss-explore
Thomas Jund d8bfd39c89 import publik theming tools 2020-09-29 10:59:55 +02:00
..
src import publik theming tools 2020-09-29 10:59:55 +02:00
test import publik theming tools 2020-09-29 10:59:55 +02:00
.editorconfig import publik theming tools 2020-09-29 10:59:55 +02:00
.gitignore import publik theming tools 2020-09-29 10:59:55 +02:00
.rollup.js import publik theming tools 2020-09-29 10:59:55 +02:00
.tape.js import publik theming tools 2020-09-29 10:59:55 +02:00
.travis.yml import publik theming tools 2020-09-29 10:59:55 +02:00
CHANGELOG.md import publik theming tools 2020-09-29 10:59:55 +02:00
CONTRIBUTING.md import publik theming tools 2020-09-29 10:59:55 +02:00
INSTALL.md import publik theming tools 2020-09-29 10:59:55 +02:00
LICENSE.md import publik theming tools 2020-09-29 10:59:55 +02:00
README.md import publik theming tools 2020-09-29 10:59:55 +02:00
package.json import publik theming tools 2020-09-29 10:59:55 +02:00

README.md

PostCSS postcss-explore PostCSS

NPM Version Build Status Support Chat

PostCSS postcss-explore lets you ... in CSS.

.example { ... }

/* becomes */

.example { ... }

Usage

Add PostCSS postcss-explore to your project:

npm install postcss-postcss-explore --save-dev

Use PostCSS postcss-explore to process your CSS:

const postcssPostcssExplore = require('postcss-postcss-explore');

postcssPostcssExplore.process(YOUR_CSS /*, processOptions, pluginOptions */);

Or use it as a PostCSS plugin:

const postcss = require('postcss');
const postcssPostcssExplore = require('postcss-postcss-explore');

postcss([
  postcssPostcssExplore(/* pluginOptions */)
]).process(YOUR_CSS /*, processOptions */);

PostCSS postcss-explore runs in all Node environments, with special instructions for:

Node PostCSS CLI Webpack Create React App Gulp Grunt

Options

...