TailwindCSS: When Edge Cases Quietly Break Scanning

Today's activity centers on a cluster of fixes to Tailwind's content scanning and build pipeline — covering watch mode, gitignore handling, and template file parsing — plus a theme engine fix around custom spacing values shadowing defaults.

Duration: PT2M35S

Episode overview

This episode is a short developer briefing from TailwindCSS.

It explains recent repository work in plain language.

  • Show: TailwindCSS
  • Published: 2026-08-07T13:05:30Z
  • Audio duration: PT2M35S

Transcript excerpt

This excerpt keeps the crawler page concise. Listen to the episode or use the RSS feed for the full update.

Good morning. It's August 7th, 2026, and today's Tailwind activity tells one clear story: edge cases in how Tailwind finds and reads your files were quietly breaking builds, and today's PRs close several of them at once.

Start with watch mode. PR 20395 from andershagbard fixes a case where the PostCSS plugin, when paired with tools like webpack's postcss-loader, would lose track of watched files after a compile error. Fix your typo, save again, and nothing recompiles — not just for that file, but for every previously tracked import.…

Scanning gets two more fixes. Robin Malfait's PR 20397 addresses a subtle conflict between `.gitignore` whitelist setups and `@source` directives — Tailwind needs to respect your ignore rules, but also needs `@source` to override them when you explicitly want something like a node_modules package scanned. And PR…

The second theme is theme-value correctness. PR 20394 from thejamesgore fixes a long-standing issue where defining a custom `--spacing-none` value causes `leading-none` to output a line-height of zero instead of the expected keyword behavior — custom spacing was silently shadowing built-in keywords. And Robin…

What to remember: if you're on…

That'…

Nearby episodes from TailwindCSS

  1. Source Scanning Gets More Precise
  2. Weekly Recap - Scanner Reliability and Platform Reach
  3. A Quiet Fix in the Legacy Config Bridge
  4. Fixing Over-Eager File Scanning
  5. Hardening the Scanner's Edges
  6. WebAssembly Fallback Closes the Platform Gap
  7. Edge Case Fixes and Dependency Maintenance
  8. Smarter Variants, Safer Dev Server