red-perfume / red-perfume-css

Library for atomizing strings of CSS
https://red-perfume.github.io
MIT License
3 stars 0 forks source link

Remove dots from classmap #14

Open TheJaredWilcurt opened 2 years ago

TheJaredWilcurt commented 2 years ago
".cow": [
  ".rp__0"
]

should become

".cow": [
  "rp__0"
]

update tests and docs

SumitKanth commented 2 years ago

Hey @TheJaredWilcurt where is classmap

TheJaredWilcurt commented 2 years ago

The classMap is something that is generated by this repo, so it is passed around and modified a lot. The dots in the class names are added here:

However when you remove it, you'll need to make sure it still shows up with a dot when the atomized CSS is generated and fix all the unit tests.