Skip to content

Latest commit

 

History

History
146 lines (69 loc) · 7.96 KB

CHANGELOG.md

File metadata and controls

146 lines (69 loc) · 7.96 KB

v2.0.21 / 2022-11-11

v2.0.20 / 2022-11-10

v2.0.19 / 2022-11-08

  • Update bin/dev script to stay in sync with other Rails installers' versions (e.g, cssbundling-rails and dartsass-rails). Use sh instead of bash for vanilla Alpine support, and use exec to run foreman for better interrupt handling. #219 by @marcoroth.

v2.0.18 / 2022-11-07

v2.0.17 / 2022-11-01

v2.0.16 / 2022-10-21

v2.0.15 / 2022-10-20

v2.0.14 / 2022-09-19

v2.0.13 / 2022-09-05

  • Correctly handle paths with embedded spaces. #184 by @flavorjones
  • The build and watch tasks accept a debug argument to generate unminified assets: rails tailwindcss:build[debug] or rails tailwindcss:watch[debug]. #198 by @flavorjones
  • The watch task accepts a poll argument to use polling instead of file system events: rails tailwindcss:watch[poll]. #199 by @flavorjones

v2.0.12 / 2022-08-10

  • Address issue when running commands with #exec by @blerchin in #189

v2.0.11 / 2022-08-09

  • Use exec to run tailwind binary, so return codes pass through by @blerchin in #181
  • Update to Tailwind CSS v3.1.8 by @TastyPi in #186

v2.0.10 / 2022-06-19

  • Fixed that released gems include the correct version of Tailwind CSS (3.1.3, not 3.0.3) by @dhh

v2.0.9 / 2022-06-18

v2.0.8 / 2022-03-10

  • Restrict views to common template formats by @pixeltrix in #155
  • Update rake build command to work with Windows by @pietmichal in #156
  • Upgrade to Tailwind 3.0.23 by @dhh

v2.0.7 / 2022-02-22

v2.0.6 / 2022-02-19

v2.0.5 / 2022-01-16

  • Upgrade to Tailwind CSS v3.0.15
  • Fix: Insert centring container around the yield by @dixpac in #106
  • Add description to watch task by @RolandStuder in #130
  • Fix the wrong indentation by @dixpac in #132

v2.0.3 / 2022-01-03

  • fix: name the platform using just architecture and os by @flavorjones in #103
  • Add tailwindcss-linux-arm64 support (make docker on Apple Silicon M1 workflow possible) by @schmidp in #112

New Contributors

v2.0.2 / 2021-12-19

v2.0.1 / 2021-12-19

  • Remove redundant font-size class from generators by @marcushwz in #97
  • Add error messages on unsupported platforms or when bundler platforms aren't correct by @flavorjones in #102

v2.0.0 / 2021-12-18

Tailwind CSS for Rails now uses the standalone executables made for Tailwind 3. These executables are platform specific, so there's actually separate underlying gems per platform, but the correct gem will automatically be picked for your platform. Supported platforms are Linux x64, macOS arm64, macOS x64, and Windows x64. (Note that due to this setup, you must install the actual gems – you can't pin your gem to the github repo.)

This is a completely different approach from previous versions of tailwindcss-rails. Gone is Ruby-powered purger. Everything now works as it would if you had installed the Node version of Tailwind. But without the Node!

This setup requires a separate watch process to run, which is configured and modeled after the approach used in cssbundling-rails. Look at the README for more details.

Huge thanks to @flavorjones for creating the platform-specific gem setup 🙏

v1.0.0 / 2021-12-14

Nothing. But we're promote 0.5.4 to 1.0.0 to go along with the final release of Rails 7.0. Because as a new sanctioned default option of Rails 7, we should stick to the API, and this communicates that 🚀🥳

v0.5.4 / 2021-12-03

  • Only depends on the railties gem.

v0.5.3 / 2021-12-03

  • Match button label for destroy with text used by regular Rails templates by @dhh