Releases: houseabsolute/tailwindcss-to-rust
Releases · houseabsolute/tailwindcss-to-rust
tailwindcss-to-rust-v0.3.2
- Fixed the generator to run on Windows without a stack overflow.
tailwindcss-to-rust-v0.3.1
v0.3.1 - 2023-02-18
- Fixes for docs and release tooling.
v0.3.0 - 2023-02-18
- The generated code now groups CSS classes into modules instead of structs. This prevents stack overflows that happened when the structs were put on the stack. Thanks to @mdochdev for identifying the issue and suggesting this fix. GH #4.
- Updated the class categories for the latest TailwindCSS version, 3.2.7.
tailwindcss-to-rust-v0.2.0
- Updated the class categories for the latest TailwindCSS version, 3.2.4.
- Updated the docs to make it clearer how to configure
tailwind.config.js
depending on whether or not you're using the macros, what templating system you're using, etc.
tailwindcss-to-rust-v0.1.4
- Added a new
--tailwindcss
argument. This can be used to provide the path to thetailwindcss
executable.
tailwindcss-to-rust v0.1.3
- Documentation fixes.
(There aren't any binaries for this release because I broke my GitHub actions and I can't redo them for this tag 😢 - but they'll be back next release (I hope))
tailwindcss-to-rust-macros v0.1.2
- Documentation and example fixes.
tailwindcss-to-rust v0.1.2
- Fixed the handling of CSS class names with periods and forward slashes. The generated Rust code included an escape for these names, so they'd end up as things like
w-0\.5
orw-3\/5
in your HTML, which is wrong. They should not have a backslash escape in the generated HTML. Note that this also means that the tailwind extractor code in the generator'sREADME.md
was wrong as well. It has also been fixed.
v0.1.1
- Fixed the repository metadata for both crates. Thanks to overlisted on the Dioxus Discord for pointing this out.
v0.1.0
- First release upon an unsuspecting world.