pintariching
pintariching
Is anybody working on this or can I start?
After a bit of formatting `cargo fmt --check` returns a wall of errors ``` Warning: can't set `wrap_comments = true`, unstable features are only available in nightly channel. Warning: can't...
I was thinking of creating an NPM and Deno package, as well as having a prebuilt standalone binaries available through a link to download and run. I think this would...
If anybody wants to help with creating a workflow to release the `railwind` CLI binary? I'm not well versed with the github actions :sweat_smile:.
Yeah that should be added also. Does this option just remove spaces and newlines, or what does it actually do?
I think this should be doable with the current implementation. First you need to iterate and group all the classes based on the `railwind::modifiers::State`. Then a new function needs to...
I don't think you need regex for this. You could use `.replace(" ", "")` to remove spaces and newlines. However I'm not sure what's faster, this or using regex.
Tailwind Play keeps these comments in so I think we should too and only remove then when minifying. In this case, you're right about using Regex to remove them.
Not yet. Currently I'm implementing the rest of the classes, after that I'll tackle the `tailwind.config.js`
At the moment, a `railwind.config.ron` config file is supported. You can read more about the [ron file format here](https://github.com/ron-rs/ron). It's a bit more convenient and I'll look into supporting the...