Aaron Tinio
Aaron Tinio
`mix deps.compile tailwind_formatter --force` does work and it's what I use. The times that I have to do it are: - first use - after changing `tailwind.config.js` - after `mix...
On my laptop with a Ryzen 7 5825U and 32GB of RAM, running `mix format a_file.hmtl.heex` or formatting a file in my editor on save, didn't feel any slower than...
@ericmj, this new implementation is much slower. In my testing, the `builds/0` private function takes about 5 to 15 seconds. The previous implementation is in the order of a hundredth...
@ericmj, rebased and used `Task.async_stream`.
You might have missed this in the README.md: https://github.com/100phlecs/tailwind_formatter#usage-in-ci
My bad, I misread your comment.
I experienced the same. Adding this to the `mix.exs` aliases helped in my case: ```elixir defp aliases do [ # ... format: [ "tailwind.install --if-missing", "tailwind default", "deps.compile --force tailwind_formatter",...
I sure hope so. I'm looking forward to what #60 can offer to help with this regard.
I think parsing the generated CSS to determine class order is a great idea! It's the only way I can think of that could work with Tailwind v4 where [`resolveConfig`...