css-to-radium
css-to-radium copied to clipboard
Radium migration CLI, converts CSS to Radium-compatible JS objects.
The css-to-radium seems to remove all trailing "px" and convert the pixels to pure numbers. Normally this won't cause any trouble but things went crazy when it handles line-height. According...
I believe this CSS demonstrates a bug I found: ```css div:before { content: '\0026'; } ``` css-to-radium transpiles it to: ```js { 'div:before': { content: '\'\0026\'' } } ``` This...
Hi, `css-to-radium` is a great tool that I used it a lot to convert css to manipulable json files. But I have issue when I tried to convert a css...
Closes #11
It seems that after about 2000 lines, `css-to-radium` generates an empty .js file. Do you have a suggestion for how to work with this?
Following CSS ``` .test { color: red; } .test:hover { color: green; } ``` gets transformed into ``` { ".test": { "color": "red" }, ".test:hover": { "color": "green" } }...