nightytidy 0.3.7 → 0.3.8
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.
package/package.json
CHANGED
|
@@ -71,7 +71,10 @@ export class AgentGit {
|
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
async _exec(cmd, args) {
|
|
74
|
-
const { stdout } = await execFileAsync(cmd, args, {
|
|
74
|
+
const { stdout } = await execFileAsync(cmd, args, {
|
|
75
|
+
cwd: this.projectDir,
|
|
76
|
+
maxBuffer: 50 * 1024 * 1024, // 50 MB — large diffs from 33-step runs
|
|
77
|
+
});
|
|
75
78
|
return stdout;
|
|
76
79
|
}
|
|
77
80
|
}
|