Skip to content

Commit 4a00eb7

Browse files
committed
Bump maxBuffer when building JS
1 parent d665b19 commit 4a00eb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var coffee = path.resolve(path.join('node_modules', '.bin', 'coffee'));
1111

1212
function run(command, callback) {
1313
console.log(command);
14-
child_process.exec(command, callback);
14+
child_process.exec(command, { maxBuffer: 25 * 1024 * 1024 }, callback);
1515
}
1616

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

0 commit comments

Comments
 (0)