postcss-safe-camel-case

0.0.2 • Public • Published

postcss-safe-camel-case

This PostCSS plugin safely converts CSS selector names to camelCase, without affecting pseudo selectors and attributes. Turns .block__element--modifier :not(:first-child) into .blockElementModifier :not(:first-child).

Warnings

Removing - and _ characters from CSS class names may cause naming conflicts:

.my-class -> .myClass
.my_class -> .myClass

Why?

While both styles are valid and can be used interchangeably, camelCase selectors are more commonly used in JavaScript and other programming languages. This is because camelCase is easier to read and more consistent with the naming conventions used in those languages. It is mainly built for CSS Modules.

Package Sidebar

Install

npm i postcss-safe-camel-case

Weekly Downloads

1

Version

0.0.2

License

MIT

Unpacked Size

3.03 kB

Total Files

4

Last publish

Collaborators

  • idolgoff