indooorsman / esbuild-css-modules-plugin

A esbuild plugin to bundle css modules into js(x)/ts(x)
MIT License
91 stars 16 forks source link

Support pascal case #43

Closed FuriouZz closed 1 year ago

FuriouZz commented 1 year ago

Previously, CSS class could be named .Root and exported with Root with localsConvention sets to "camelCase" or "camelCaseOnly". When v2 is enabled, this is not the case anymore.

I added an option usePascalCase which is camel case with the first letter in uppercase.