@wix/evalforge-evaluator 0.197.0 → 0.199.0

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.
@@ -11,6 +11,13 @@ export type InstallExec = (cmd: string, args: string[], opts: {
11
11
  timeoutMs: number;
12
12
  env: NodeJS.ProcessEnv;
13
13
  }) => Promise<void>;
14
+ /**
15
+ * Install-only exec: captures the child's stdout+stderr and flushes the full
16
+ * output through onProgress when the process ends. Deliberately separate from
17
+ * the generic `defaultExec` so this logging touches the dependency install and
18
+ * nothing else — no other spawn path changes. Inject it via `options.exec`.
19
+ */
20
+ export declare function createLoggingInstallExec(onProgress: (message: string) => void): InstallExec;
14
21
  export interface InstallDependenciesOptions {
15
22
  exec?: InstallExec;
16
23
  cacheBase?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/evalforge-evaluator",
3
- "version": "0.197.0",
3
+ "version": "0.199.0",
4
4
  "description": "EvalForge Evaluator",
5
5
  "bin": "./build/index.js",
6
6
  "files": [
@@ -22,9 +22,9 @@
22
22
  "@ai-sdk/openai": "^3.0.39",
23
23
  "@anthropic-ai/claude-agent-sdk": "^0.2.63",
24
24
  "@anthropic-ai/claude-code": "^2.1.63",
25
- "@wix/eval-assertions": "0.73.0",
26
- "@wix/evalforge-github-client": "0.73.0",
27
- "@wix/evalforge-types": "0.98.0",
25
+ "@wix/eval-assertions": "0.74.0",
26
+ "@wix/evalforge-github-client": "0.74.0",
27
+ "@wix/evalforge-types": "0.99.0",
28
28
  "ai": "^6.0.107",
29
29
  "diff": "^7.0.0",
30
30
  "tar": "^7.5.3",
@@ -72,5 +72,5 @@
72
72
  "artifactId": "evalforge-evaluator"
73
73
  }
74
74
  },
75
- "falconPackageHash": "d7120f1b6f853ee806f287060556bfa2c25e42a271b1563dd70b6566"
75
+ "falconPackageHash": "bbb54916417485567c80894a32a79590c9f467eb492fc54c09968aee"
76
76
  }