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) {
2828 if ( opts . notify === false ) c . notify = false ;
2929 if ( opts . clear || opts . cls ) c . clear = true ;
3030 }
31- console . log ( 'c.deps' , c . deps )
3231 var ignoreWatch = ( [ ] ) . concat ( opts && opts [ 'ignore-watch' ] || [ ] ) . concat ( c . ignore || [ ] ) ;
3332 opts . debug && console . log ( 'Ignore watch:' , ignoreWatch )
3433 var ignore = ignoreWatch . concat ( ignoreWatch . map ( resolvePath ) ) ;
Original file line number Diff line number Diff line change @@ -29,13 +29,13 @@ export const spawnTsNodeDev = (
2929
3030 ps . stderr . on ( 'data' , function ( data ) {
3131 if ( opts . stderr || outputTurnedOn ) {
32- console . log ( 'STDERR:' , data . toString ( ) )
32+ console . log ( 'STDERR:' , data . toString ( ) . replace ( / \n $ / , '' ) )
3333 }
3434 err += data . toString ( )
3535 } )
3636 ps . stdout . on ( 'data' , function ( data ) {
3737 if ( opts . stdout || outputTurnedOn ) {
38- console . log ( 'STDOUT:' , data . toString ( ) )
38+ console . log ( 'STDOUT:' , data . toString ( ) . replace ( / \n $ / , '' ) )
3939 }
4040 out += data . toString ( )
4141 } )
You can’t perform that action at this time.
0 commit comments