File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
packages/@tailwindcss-node/src Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313- Fix trailing ` ) ` from interfering with extraction in Clojure keywords ([ #18345 ] ( https://github.com/tailwindlabs/tailwindcss/pull/18345 ) )
1414- Detect classes inside Elixir charlist, word list, and string sigils ([ #18432 ] ( https://github.com/tailwindlabs/tailwindcss/pull/18432 ) )
1515- Track source locations through ` @plugin ` and ` @config ` ([ #18345 ] ( https://github.com/tailwindlabs/tailwindcss/pull/18345 ) )
16+ - Handle when ` process.env.DEBUG ` is a boolean in ` @tailwindcss/node ` ([ #18485 ] ( https://github.com/tailwindlabs/tailwindcss/pull/18485 ) )
1617
1718## [ 4.1.11] - 2025-06-26
1819
Original file line number Diff line number Diff line change 11export const DEBUG = resolveDebug ( process . env . DEBUG )
22
33function resolveDebug ( debug : typeof process . env . DEBUG ) {
4+ if ( typeof debug === 'boolean' ) {
5+ return debug
6+ }
7+
48 if ( debug === undefined ) {
59 return false
610 }
You can’t perform that action at this time.
0 commit comments