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
13
13
- Fix trailing ` ) ` from interfering with extraction in Clojure keywords ([ #18345 ] ( https://github.com/tailwindlabs/tailwindcss/pull/18345 ) )
14
14
- Detect classes inside Elixir charlist, word list, and string sigils ([ #18432 ] ( https://github.com/tailwindlabs/tailwindcss/pull/18432 ) )
15
15
- 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 ) )
16
17
17
18
## [ 4.1.11] - 2025-06-26
18
19
Original file line number Diff line number Diff line change 1
1
export const DEBUG = resolveDebug ( process . env . DEBUG )
2
2
3
3
function resolveDebug ( debug : typeof process . env . DEBUG ) {
4
+ if ( typeof debug === 'boolean' ) {
5
+ return debug
6
+ }
7
+
4
8
if ( debug === undefined ) {
5
9
return false
6
10
}
You can’t perform that action at this time.
0 commit comments