Skip to content

Commit cdb5b22

Browse files
authored
Merge pull request #12 from achappuis/feature/fix-stdout-output
Restore behavior described in README.md when no output file
2 parents 392619a + 35f58e6 commit cdb5b22

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Unreleased
2+
3+
- Change behavior when no output file is given to tap-html to restore what is described in README.md
4+
15
# 1.0.1 (04/20/2019)
26

37
- fixes backwards compatibility with node@8

bin/index.js

+7-3
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,15 @@ const { out } = program;
4747

4848
process.stdin
4949
.pipe(parser((res) => {
50-
const outputPath = out ? path.resolve(__dirname, out) : path.resolve(process.cwd(), 'tap.html');
51-
5250
// generate the html report
5351
const output = generate(res);
5452

55-
fs.writeFileSync(outputPath, output);
53+
// Produce output either in a file or on stdout.
54+
if (out) {
55+
const outputPath = path.resolve(__dirname, out);
56+
fs.writeFileSync(outputPath, output);
57+
} else {
58+
process.stdout.write(output);
59+
}
5660
}))
5761
.pipe(process.stdout);

0 commit comments

Comments
 (0)