Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2975939

Browse files
Do not check for interactive session to shut down dev server (#8845)
1 parent 99f1b6b commit 2975939

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/react-scripts/scripts/start.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ checkBrowsers(paths.appPath, isInteractive)
165165
});
166166
});
167167

168-
if (isInteractive || process.env.CI !== 'true') {
168+
if (process.env.CI !== 'true') {
169169
// Gracefully exit when stdin ends
170170
process.stdin.on('end', function() {
171171
devServer.close();

0 commit comments

Comments
 (0)