- Fixed the generator to run on Windows without a stack overflow.
- Fixes for docs and release tooling.
-
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.
-
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.
- Added a new
--tailwindcss
argument. This can be used to provide the path to thetailwindcss
executable.
- Documentation fixes.
- 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.
- Fixed the repository metadata for the crate. Thanks to @overlisted on the Dioxus Discord for pointing this out.
- First release upon an unsuspecting world.