Skip to content

Commit 1015179

Browse files
committed
test output
1 parent 2357394 commit 1015179

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

lib/cfg.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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));

test/spawn.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
})

0 commit comments

Comments
 (0)