@oberd/postcss-classnames

Helper function to transform class map objects from PostCSS to strings

Usage no npm install needed!

<script type="module">
  import oberdPostcssClassnames from 'https://cdn.skypack.dev/@oberd/postcss-classnames';
</script>

README

PostCSS Classnames

Instead of combining classnames from PostCSS objects using typical object syntax, write classes like you normally would with this helper function.

Usage

npm i -S @oberd/postcss-classnames
import globalStyles from '../styles.css';
import moduleStyles from './button.css';
import classnames from '@oberd/postcss-classnames';

const css = classnames(globalStyles, moduleStyles);

css('button-class global-class');
// Will return class string for rendering
// 'Button__button-class__2 Global__global-class__1'