Skip to content

Commit

Permalink
Merge pull request #9 from qiansc/master
Browse files Browse the repository at this point in the history
fix: fix stdout maxBuffer exceeded error
  • Loading branch information
mathieudutour authored Mar 22, 2021
2 parents 90d3ebf + 9c634be commit 590bbcb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/compile-xcodeproj.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ module.exports = function compileNib(loader, projectPath, outputPath, cb) {
outputPath,
'COMMAND_LINE_BUILD=1',
],
{ encoding: 'utf8' },
{
encoding: 'utf8',
maxBuffer: 200 * 1024 * 1024, // default 200 * 1024
},
(error) => cb(error),
);
};

0 comments on commit 590bbcb

Please sign in to comment.