openairev 0.3.15 → 0.3.16

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openairev",
3
- "version": "0.3.15",
3
+ "version": "0.3.16",
4
4
  "description": "Cross-model AI code reviewer — independent review for AI-assisted coding workflows",
5
5
  "type": "module",
6
6
  "bin": {
@@ -5,7 +5,7 @@ const MAX_BUFFER = 10 * 1024 * 1024;
5
5
  export function exec(cmd, args, { onData, cwd, signal } = {}) {
6
6
  return new Promise((resolve, reject) => {
7
7
  const child = spawn(cmd, args, {
8
- timeout: 300_000,
8
+ timeout: 600_000,
9
9
  cwd,
10
10
  });
11
11