Skip to content

Commit c36f0ab

Browse files
committed
Whitespace.
1 parent af5a7a5 commit c36f0ab

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

bin/doxdox

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -86,23 +86,24 @@ ${chalk.yellow(' -t, --title')} Sets title.
8686

8787
doxdox.parseInputs(args.inputs, Object.assign({
8888
'pkg': projectPkg
89-
}, config)).then(content => {
89+
}, config))
90+
.then(content => {
9091

91-
if (output) {
92+
if (output) {
9293

93-
fs.writeFileSync(output, content, 'utf8');
94+
fs.writeFileSync(output, content, 'utf8');
9495

95-
} else {
96+
} else {
9697

97-
process.stdout.write(content);
98+
process.stdout.write(content);
9899

99-
}
100+
}
100101

101-
})
102-
.catch(err => {
102+
})
103+
.catch(err => {
103104

104-
process.stderr.write(`${err.toString()}\n`);
105+
process.stderr.write(`${err.toString()}\n`);
105106

106-
});
107+
});
107108

108109
}

0 commit comments

Comments
 (0)