summaryrefslogtreecommitdiff
path: root/tools/doc/generate.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/doc/generate.js')
-rw-r--r--tools/doc/generate.js16
1 files changed, 7 insertions, 9 deletions
diff --git a/tools/doc/generate.js b/tools/doc/generate.js
index 94c0905468..7df987e1cf 100644
--- a/tools/doc/generate.js
+++ b/tools/doc/generate.js
@@ -24,6 +24,8 @@ args.forEach(function(arg) {
}
});
+nodeVersion = nodeVersion || process.version;
+
if (!inputFile) {
throw new Error('No input file specified');
}
@@ -46,15 +48,11 @@ function next(er, input) {
break;
case 'html':
- require('./html.js')({
- input: input,
- filename: inputFile,
- template: template,
- nodeVersion: nodeVersion,
- }, function(er, html) {
- if (er) throw er;
- console.log(html);
- });
+ require('./html.js')(input, inputFile, template, nodeVersion,
+ function(er, html) {
+ if (er) throw er;
+ console.log(html);
+ });
break;
default: