@wix/evalforge-evaluator 0.169.0 → 0.171.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.
@@ -0,0 +1,11 @@
1
+ import { execFileSync } from 'child_process';
2
+ /**
3
+ * Install dependencies in workDir if a package.json is present.
4
+ * Detects the package manager from the lock file and runs the appropriate install command.
5
+ * Failures are logged as warnings and do not abort the scenario.
6
+ *
7
+ * When cacheBase is provided, node_modules is cached keyed by the lock file hash.
8
+ * Subsequent calls with the same lock file content skip the install entirely —
9
+ * node_modules is restored via APFS clone on macOS (near-instant) or recursive copy on Linux.
10
+ */
11
+ export declare function installDependencies(workDir: string, exec?: typeof execFileSync, cacheBase?: string): Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/evalforge-evaluator",
3
- "version": "0.169.0",
3
+ "version": "0.171.0",
4
4
  "description": "EvalForge Evaluator",
5
5
  "bin": "./build/index.js",
6
6
  "files": [
@@ -22,7 +22,7 @@
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.63.0",
25
+ "@wix/eval-assertions": "0.64.0",
26
26
  "@wix/evalforge-github-client": "0.65.0",
27
27
  "@wix/evalforge-types": "0.90.0",
28
28
  "ai": "^6.0.107",
@@ -63,5 +63,5 @@
63
63
  "artifactId": "evalforge-evaluator"
64
64
  }
65
65
  },
66
- "falconPackageHash": "1c96ff1c35fdb4059157b7ef5ca3bc8ccce52674cd8019d37d1eba7e"
66
+ "falconPackageHash": "8f321fdc2651b1801bf7a9eb9a3cea8d96199ea2ada4b9a1ba1c57a7"
67
67
  }