Skip to content

Commit

Permalink
fix: fix stdout maxBuffer exceeded error
Browse files Browse the repository at this point in the history
  • Loading branch information
qiansc committed Mar 22, 2021
1 parent 90d3ebf commit 9c634be
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 9c634be

Please sign in to comment.