File tree 2 files changed +11
-2
lines changed
2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @react-workspaces/react-scripts" ,
3
- "version" : " 3.0.0 -alpha-04 " ,
4
- "description" : " Configuration and scripts for Create React App." ,
3
+ "version" : " 3.0.1 -alpha-06 " ,
4
+ "description" : " React + Yarn Workspaces Configuration and scripts for Create React App." ,
5
5
"repository" : {
6
6
"type" : " git" ,
7
7
"url" : " https://github.com/facebook/create-react-app.git" ,
Original file line number Diff line number Diff line change @@ -152,6 +152,15 @@ checkBrowsers(paths.appPath, isInteractive)
152
152
process . exit ( ) ;
153
153
} ) ;
154
154
} ) ;
155
+
156
+ // We need this to close the WebPack Server
157
+ // Thanks @1player! https://github.com/facebook/create-react-app/issues/1753#issuecomment-329972786
158
+ process . stdin . on ( "end" , function ( ) {
159
+ devServer . close ( ) ;
160
+ process . exit ( ) ;
161
+ } ) ;
162
+
163
+ process . stdin . resume ( ) ;
155
164
} )
156
165
. catch ( err => {
157
166
if ( err && err . message ) {
You can’t perform that action at this time.
0 commit comments