@empiricalrun/test-gen 0.78.7 → 0.79.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @empiricalrun/test-gen
2
2
 
3
+ ## 0.79.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 0dfc150: fix: exports config between packages
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [0dfc150]
12
+ - @empiricalrun/test-run@0.14.0
13
+
3
14
  ## 0.78.7
4
15
 
5
16
  ### Patch Changes
@@ -25,7 +25,7 @@ exports.buildTestNamePrompt = buildTestNamePrompt;
25
25
  exports.getVariableDeclarationsFromCode = getVariableDeclarationsFromCode;
26
26
  exports.isSyntaxValid = isSyntaxValid;
27
27
  const parser_1 = require("@babel/parser");
28
- const test_run_1 = require("@empiricalrun/test-run");
28
+ const cmd_1 = require("@empiricalrun/test-run/cmd");
29
29
  const eslint_1 = require("eslint");
30
30
  const fs_1 = __importDefault(require("fs"));
31
31
  const path_1 = __importDefault(require("path"));
@@ -203,7 +203,7 @@ function appendToTestBlock(testBlock, content) {
203
203
  return updateTestBlock;
204
204
  }
205
205
  async function runTypescriptCompiler(repoDir) {
206
- let { code, output } = await (0, test_run_1.spawnCmd)("npx", ["tsc", "--incremental", "--noEmit", "--pretty"], {
206
+ let { code, output } = await (0, cmd_1.spawnCmd)("npx", ["tsc", "--incremental", "--noEmit", "--pretty"], {
207
207
  cwd: repoDir,
208
208
  envOverrides: {},
209
209
  captureOutput: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@empiricalrun/test-gen",
3
- "version": "0.78.7",
3
+ "version": "0.79.0",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -90,7 +90,7 @@
90
90
  "@empiricalrun/ast-parser": "^0.0.10",
91
91
  "@empiricalrun/llm": "^0.25.1",
92
92
  "@empiricalrun/r2-uploader": "^0.9.0",
93
- "@empiricalrun/test-run": "^0.13.2",
93
+ "@empiricalrun/test-run": "^0.14.0",
94
94
  "videostil": "0.3.3"
95
95
  },
96
96
  "devDependencies": {