fortnite-replay-analysis 1.1.2 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -40,7 +40,7 @@ function ReplayAnalysis(inputPath, { bot = false, sort = true } = {}) { // Fortn
40
40
  }
41
41
  const binPath = getBinaryPath();
42
42
 
43
- execFile(binPath, [replayFilePath], (error, stdout, stderr) => {
43
+ execFile(binPath, [replayFilePath], { maxBuffer: 1024 * 1024 * 20 }, (error, stdout, stderr) => {
44
44
  if (error) {
45
45
  reject(new Error(`Execution error: ${error.message}`));
46
46
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fortnite-replay-analysis",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "Fortnite replay analysis tool (Node.js用Fortniteリプレイ解析バイナリラッパー)",
5
5
  "repository": {
6
6
  "type": "git",