1.0.0 • Published 8 years ago

postcss-transform-classes v1.0.0

Weekly downloads
10
License
ISC
Repository
github
Last release
8 years ago

postcss-transform-classes

npm install --save postcss-transform-classes

Transforms all classes in a CSS file.

import { camelCase } from 'lodash';
import transformClasses from 'postcss-transform-classes';

return postcss([
  transformClasses({
    transform: camelCase,
  }),
])
  .process(...)

By default will throw if two different classes produce the same output. In the example above, an error would be thrown if you had .foo-bar and .fooBar. You can disable this by setting allowConflicts: true.