File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ module.exports = function (main, opts) {
28
28
if ( opts . notify === false ) c . notify = false ;
29
29
if ( opts . clear || opts . cls ) c . clear = true ;
30
30
}
31
- console . log ( 'c.deps' , c . deps )
32
31
var ignoreWatch = ( [ ] ) . concat ( opts && opts [ 'ignore-watch' ] || [ ] ) . concat ( c . ignore || [ ] ) ;
33
32
opts . debug && console . log ( 'Ignore watch:' , ignoreWatch )
34
33
var ignore = ignoreWatch . concat ( ignoreWatch . map ( resolvePath ) ) ;
Original file line number Diff line number Diff line change @@ -29,13 +29,13 @@ export const spawnTsNodeDev = (
29
29
30
30
ps . stderr . on ( 'data' , function ( data ) {
31
31
if ( opts . stderr || outputTurnedOn ) {
32
- console . log ( 'STDERR:' , data . toString ( ) )
32
+ console . log ( 'STDERR:' , data . toString ( ) . replace ( / \n $ / , '' ) )
33
33
}
34
34
err += data . toString ( )
35
35
} )
36
36
ps . stdout . on ( 'data' , function ( data ) {
37
37
if ( opts . stdout || outputTurnedOn ) {
38
- console . log ( 'STDOUT:' , data . toString ( ) )
38
+ console . log ( 'STDOUT:' , data . toString ( ) . replace ( / \n $ / , '' ) )
39
39
}
40
40
out += data . toString ( )
41
41
} )
You can’t perform that action at this time.
0 commit comments