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 ;
2
2
3
3
const exec = ( cmd , env ) =>
4
4
execSync ( cmd , {
5
- stdio : ' inherit' ,
5
+ stdio : " inherit" ,
6
6
env : Object . assign ( { } , process . env , env )
7
- } )
7
+ } ) ;
8
8
9
9
if ( process . env . CI ) {
10
- exec ( ' lerna run build --stream --ignore react-router-website' )
10
+ exec ( " lerna run build --stream --ignore react-router-website" ) ;
11
11
} else {
12
- exec ( ' lerna run build --stream' )
12
+ exec ( " lerna run build --stream" ) ;
13
13
}
Original file line number Diff line number Diff line change 1
- const execSync = require ( ' child_process' ) . execSync
1
+ const execSync = require ( " child_process" ) . execSync ;
2
2
3
3
const exec = ( cmd , env ) =>
4
4
execSync ( cmd , {
5
- stdio : ' inherit' ,
5
+ stdio : " inherit" ,
6
6
env : Object . assign ( { } , process . env , env )
7
- } )
7
+ } ) ;
8
8
9
9
if ( 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
+ ) ;
11
13
} 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
+ ) ;
13
17
}
You can’t perform that action at this time.
0 commit comments