Skip to content

Commit be2c4f2

Browse files
committed
chore(serve): remove electron junk output stripping
doesn't seem to be needed anymore
1 parent a6cb801 commit be2c4f2

File tree

2 files changed

+0
-40
lines changed

2 files changed

+0
-40
lines changed

index.js

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -514,20 +514,6 @@ module.exports = (api, options) => {
514514
}
515515
)
516516

517-
if (pluginOptions.removeElectronJunk === false) {
518-
// Pipe output to console
519-
child.stdout.pipe(process.stdout)
520-
child.stderr.pipe(process.stderr)
521-
} else {
522-
// Remove junk terminal output (#60)
523-
child.stdout
524-
.pipe(require('./lib/removeJunk.js')())
525-
.pipe(process.stdout)
526-
child.stderr
527-
.pipe(require('./lib/removeJunk.js')())
528-
.pipe(process.stderr)
529-
}
530-
531517
child.on('exit', onChildExit)
532518
}
533519
}

lib/removeJunk.js

Lines changed: 0 additions & 26 deletions
This file was deleted.

0 commit comments

Comments
 (0)