Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- Canonicalization: improve canonicalizations for `tracking-*` utilities by preferring non-negative utilities (e.g. `-tracking-tighter` → `tracking-wider`) ([#19827](https://github.com/tailwindlabs/tailwindcss/pull/19827))
- Canonicalization: improve canonicalization for `tracking-*` utilities by preferring non-negative utilities (e.g. `-tracking-tighter` → `tracking-wider`) ([#19827](https://github.com/tailwindlabs/tailwindcss/pull/19827))
- Fix crash due to invalid characters in candidate ([#19829](https://github.com/tailwindlabs/tailwindcss/pull/19829))
- Ensure query params in imports are considered unique resources when using `@tailwindcss/webpack` ([#19723](https://github.com/tailwindlabs/tailwindcss/pull/19723))
- Canonicalization: collapse arbitrary values into shorthand utilities (e.g. `px-[1.2rem] py-[1.2rem]` → `p-[1.2rem]`) ([#19837](https://github.com/tailwindlabs/tailwindcss/pull/19837))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
^^^^^^^^^^ ^^^^^^
libraries, our components are designed to be fast, flexible, and easy to
^^^ ^^^^^^^^^^ ^^^ ^^^^^^^^ ^^ ^^ ^^^ ^^^^ ^^
use <i>directy</i> in Ruby on Rails!
use <i>directly</i> in Ruby on Rails!
^^^ ^^^^^^^ ^^ ^^

= doc_example(css: "mt-8 lg:mt-0 lg:basis-3/5 h-44") do
Expand All @@ -101,7 +101,7 @@

%p.mt-2
^^^^
Utlize
Utilize
= daisy_link("HAML", "https://haml.info/", target: "_blank")
^^^^^^
so your views are simple, concise, and easy to understand.
Expand All @@ -119,7 +119,7 @@
%p.mt-2
^^^^
:markdown
**PLUS!** You can utlize filters like _Markdown_, CoffeeScript,
**PLUS!** You can utilize filters like _Markdown_, CoffeeScript,
^^^ ^^^^^^ ^^^^^^^ ^^^^
Textile, and many more!
^^^ ^^^^ ^^^^^
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
= daisy_link "DaisyUI", "https://daisyui.com/", target: "_blank"
= daisy_link "TailwindCSS", "https://tailwindcss.com/", target: "_blank"
libraries, our components are designed to be fast, flexible, and easy to
use <i>directy</i> in Ruby on Rails!
use <i>directly</i> in Ruby on Rails!

= doc_example(css: "mt-8 lg:mt-0 lg:basis-3/5 h-44") do
.flex.flex-col.sm:flex-row.items-center.gap-4
Expand All @@ -58,7 +58,7 @@
Simple, Concise Views

%p.mt-2
Utlize
Utilize
= daisy_link("HAML", "https://haml.info/", target: "_blank")
so your views are simple, concise, and easy to understand.

Expand All @@ -69,7 +69,7 @@

%p.mt-2
:markdown
**PLUS!** You can utlize filters like _Markdown_, CoffeeScript,
**PLUS!** You can utilize filters like _Markdown_, CoffeeScript,
Textile, and many more!

.mt-8.xl:mt-0
Expand Down
2 changes: 1 addition & 1 deletion packages/@tailwindcss-postcss/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ function tailwindcss(opts: PluginOptions = {}): AcceptedPlugin {

if (
rebuildStrategy === 'full' &&
// We can re-use the compiler if it was created during the
// We can reuse the compiler if it was created during the
// initial build. If it wasn't, we need to create a new one.
!isInitialBuild
) {
Expand Down
2 changes: 1 addition & 1 deletion packages/@tailwindcss-vite/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default function tailwindcss(opts: PluginOptions = {}): Plugin[] {
) => Promise<string | undefined>

// There are cases where Environment API is available,
// but `createResolver` is still overriden (for example astro v5)
// but `createResolver` is still overridden (for example astro v5)
//
// Copied as-is from vite, because this function is not a part of public API
//
Expand Down