We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a3e66fc + bcc9cc6 commit 84e5cd7Copy full SHA for 84e5cd7
bin/github-lint.js
@@ -12,7 +12,7 @@ const hasBasicColorSupport = supportsColors.stdout.hasBasic && supportsColors.st
12
13
function execFile(command, args) {
14
return new Promise(resolve => {
15
- childProcess.execFile(command, args, (error, stdout, stderr) => {
+ childProcess.execFile(command, args, {maxBuffer: 1024 ** 2}, (error, stdout, stderr) => {
16
resolve({code: error ? error.code : 0, stdout, stderr})
17
})
18
0 commit comments