File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ export class XCode7Simulator implements ISimulator {
67
67
childProcess . stdout . on ( "data" , ( data : NodeBuffer ) => {
68
68
let dataAsString = data . toString ( ) ;
69
69
if ( dataAsString . indexOf ( `[${ pid } ]` ) > - 1 ) {
70
- console . log ( dataAsString ) ;
70
+ process . stdout . write ( dataAsString ) ;
71
71
}
72
72
} ) ;
73
73
}
@@ -76,7 +76,7 @@ export class XCode7Simulator implements ISimulator {
76
76
childProcess . stderr . on ( "data" , ( data : string ) => {
77
77
let dataAsString = data . toString ( ) ;
78
78
if ( dataAsString . indexOf ( `[${ pid } ]` ) > - 1 ) {
79
- console . error ( dataAsString ) ;
79
+ process . stdout . write ( dataAsString ) ;
80
80
}
81
81
} ) ;
82
82
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " ios-sim-portable" ,
3
- "version" : " 1.0.16 " ,
3
+ "version" : " 1.0.17 " ,
4
4
"description" : " " ,
5
5
"main" : " ./lib/ios-sim.js" ,
6
6
"scripts" : {
You can’t perform that action at this time.
0 commit comments