File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
33
33
- Handle variants in utility selectors using ` :where() ` and ` :has() ` ([ #9309 ] ( https://github.com/tailwindlabs/tailwindcss/pull/9309 ) )
34
34
- Improve data type analyses for arbitrary values ([ #9320 ] ( https://github.com/tailwindlabs/tailwindcss/pull/9320 ) )
35
35
- Don't emit generated utilities with invalid uses of theme functions ([ #9319 ] ( https://github.com/tailwindlabs/tailwindcss/pull/9319 ) )
36
+ - Revert change that only listened for stdin close on TTYs ([ #9331 ] ( https://github.com/tailwindlabs/tailwindcss/pull/9331 ) )
36
37
37
38
## [ 3.1.8] - 2022-08-05
38
39
Original file line number Diff line number Diff line change @@ -1016,10 +1016,8 @@ async function build() {
1016
1016
1017
1017
if ( shouldWatch ) {
1018
1018
/* Abort the watcher if stdin is closed to avoid zombie processes */
1019
- if ( process . stdin . isTTY ) {
1020
- process . stdin . on ( 'end' , ( ) => process . exit ( 0 ) )
1021
- process . stdin . resume ( )
1022
- }
1019
+ process . stdin . on ( 'end' , ( ) => process . exit ( 0 ) )
1020
+ process . stdin . resume ( )
1023
1021
startWatcher ( )
1024
1022
} else {
1025
1023
buildOnce ( )
You can’t perform that action at this time.
0 commit comments