Skip to content

Commit

Permalink
Bump maxBuffer when building JS
Browse files Browse the repository at this point in the history
  • Loading branch information
LinusU committed Aug 20, 2018
1 parent d665b19 commit 4a00eb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ var coffee = path.resolve(path.join('node_modules', '.bin', 'coffee'));

function run(command, callback) {
console.log(command);
child_process.exec(command, callback);
child_process.exec(command, { maxBuffer: 25 * 1024 * 1024 }, callback);
}

// Use browserify to package up source-map-support.js
Expand Down

0 comments on commit 4a00eb7

Please sign in to comment.