File tree Expand file tree Collapse file tree 2 files changed +14
-10
lines changed
Expand file tree Collapse file tree 2 files changed +14
-10
lines changed Original file line number Diff line number Diff line change 1- const execSync = require ( ' child_process' ) . execSync
1+ const execSync = require ( " child_process" ) . execSync ;
22
33const exec = ( cmd , env ) =>
44 execSync ( cmd , {
5- stdio : ' inherit' ,
5+ stdio : " inherit" ,
66 env : Object . assign ( { } , process . env , env )
7- } )
7+ } ) ;
88
99if ( process . env . CI ) {
10- exec ( ' lerna run build --stream --ignore react-router-website' )
10+ exec ( " lerna run build --stream --ignore react-router-website" ) ;
1111} else {
12- exec ( ' lerna run build --stream' )
12+ exec ( " lerna run build --stream" ) ;
1313}
Original file line number Diff line number Diff line change 1- const execSync = require ( ' child_process' ) . execSync
1+ const execSync = require ( " child_process" ) . execSync ;
22
33const exec = ( cmd , env ) =>
44 execSync ( cmd , {
5- stdio : ' inherit' ,
5+ stdio : " inherit" ,
66 env : Object . assign ( { } , process . env , env )
7- } )
7+ } ) ;
88
99if ( process . env . CI ) {
10- exec ( 'lerna bootstrap --stream --ignore react-router-website --hoist --nohoist react-native --nohoist react-test-renderer' )
10+ exec (
11+ "lerna bootstrap --stream --ignore react-router-website --hoist --nohoist react-native --nohoist react-test-renderer"
12+ ) ;
1113} else {
12- exec ( 'lerna bootstrap --stream --hoist --nohoist react-native --nohoist react-test-renderer' )
14+ exec (
15+ "lerna bootstrap --stream --hoist --nohoist react-native --nohoist react-test-renderer"
16+ ) ;
1317}
You can’t perform that action at this time.
0 commit comments