Releases: tonysm/tailwindcss-laravel
Releases · tonysm/tailwindcss-laravel
0.13.1
0.12.1
0.12.0
0.11.0
What's Changed
- Fixes installation command not overriding the default
app.css
file even though it's empty - Bumps the default TailwindCSS bin version to v3.3.5
Full Changelog: 0.10.1...0.11.0
0.10.1
0.10.0
0.9.0
0.8.0
Changelog
- NEW: The
tailwindcss()
function throws an exception when the manifest file is missing. When testing, we don't want that behavior as we don't always need to compile our styles to run the tests (sometimes we do). For that reason, you may now use the newInteractsWithTailwind
trait and call the$this->withoutTailwind()
method on your tests (or in the base TestCase) to disable the missing manifest exception on your tests (see docs). Initial work by @andreasnij (thanks!)
0.7.0
0.6.0
Changelog
- CHANGED: The
tailwindcss:install
command was changed to work with the new frontend setup in Laravel 9, which uses Vite instead of Mix. It should also keep working on installs in Laravel apps using Mix. Of course, it also works on apps using neither (*cough* *cough* Importmap Laravel)