We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d84ecd commit 6fe0992Copy full SHA for 6fe0992
cli/pbts.js
@@ -65,7 +65,8 @@ exports.main = function(args, callback) {
65
var child = child_process.exec("node \"" + basedir + "/node_modules/jsdoc/jsdoc.js\" -c \"" + basedir + "/jsdoc.types.json\" -q \"module=" + encodeURIComponent(moduleName) + "\" " + files.map(function(file) { return '"' + file + '"'; }).join(' '), {
66
cwd: process.cwd(),
67
argv0: "node",
68
- stdio: "pipe"
+ stdio: "pipe",
69
+ maxBuffer: 1 << 24 // 16mb
70
});
71
var out = [];
72
child.stdout.on("data", function(data) {
0 commit comments