diff --git a/lib/compile-xcodeproj.js b/lib/compile-xcodeproj.js index 45e13f4..15e0a26 100644 --- a/lib/compile-xcodeproj.js +++ b/lib/compile-xcodeproj.js @@ -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), ); };