Releases: SymfonyCasts/tailwind-bundle
v0.10.1
v0.10.0 : musl binary support
Hey Tailwinder's!
Small release that enables downloading the musl binary Tailwind 4.0 provides if your system architecture supports it.
What's Changed
Full Changelog: v0.9.0...v0.10.0
v0.9.0 : Strict Mode
Hey Tailwinder's!
Small release that adds the concept of a strict mode. When not enabled, an exception isn't thrown if you haven't called tailwind:build
. On everywhere but the test
environment, where you likely don't care about the CSS. This makes it easier to run your tests in a CI environment.
What's Changed
Full Changelog: v0.8.0...v0.9.0
v0.8.0 : TailwindCSS v4 Support (Official)
Hey Tailwinder's!
This release officially adds TailwindCSS v4 support and also fixes some long-standing version mismatch issues. Now, in your config, you must specify one of the following:
- Exact
binary_version
(ie3.4.17
or4.0.9
) - The
binary
, if managing yourself.
Not specifying triggers a deprecation and defaults to binary_version: 3.4.17
. This is required to ensure all team members, CI, production are all on the exact same version (like composer.lock
does for PHP dependencies).
What's Changed
Full Changelog: v0.7.1...v0.8.0
v0.7.1 : Default to TailwindCSS 3.x
Sorry Tailwind'ers, this bundle does not yet support TailwindCSS 4.0. This release defaults the binary to the latest 3.x release until we can properly support 4.0!
What's Changed
Full Changelog: v0.7.0...v0.7.1
v0.7.0 : PostCSS Configuration
Hey Tailwind'ers!
Small release but with a cool new feature: the ability to use a custom PostCSS configuration!
What's Changed
Full Changelog: v0.6.1...v0.7.0
v0.6.1 : Housekeeping
Hey Tailwind'ers!
Just a minor housekeeping release!
What's Changed
- [ci] php-cs-fixer it up by @jrushlow in #62
- Add CI status badge by @bocharsky-bw in #65
- Fix CI by @bocharsky-bw in #64
- Added information for additional inclusion of paths to search classes in by @DocFX in #67
- Unblock PHPUnit - add it as a dev dependency by @bocharsky-bw in #68
- fix: new asset-mapper hash by @kbond in #69
- Fix path to License file by @cezarpopa in #70
- Add tools/ and .neon to the .gitattributes by @bocharsky-bw in #73
- [CI] Fix randomly failed tests on Windows v2 by @bocharsky-bw in #75
- minor: fix failing windows tests by @kbond in #76
New Contributors
- @DocFX made their first contribution in #67
- @cezarpopa made their first contribution in #70
Full Changelog: v0.6.0...v0.6.1
Add support of multiple entrypoints for input CSS files
Add --poll option that should help with auto-rebuild on Windows Docker
Hi there!
If you're experiencing problems with auto-rebuilding your CSS using --watch
on Windows Docker - try to add --poll
along with the --watch
option:
php bin/console tailwind:build --watch --poll
TailwindCSS will use polling instead of filesystem events when watching.
What's Changed
- Windows Docker and Tailwind watch mode by @Mitraniom in #57
New Contributors
- @Mitraniom made their first contribution in #57
Full Changelog: v0.5.2...v0.5.3