@empiricalrun/test-gen 0.53.11 → 0.53.12
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,14 @@
|
|
|
1
1
|
# @empiricalrun/test-gen
|
|
2
2
|
|
|
3
|
+
## 0.53.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9edf60b: fix: remove check for modified files in create-pr tool
|
|
8
|
+
- Updated dependencies [f25f7f1]
|
|
9
|
+
- Updated dependencies [2b98129]
|
|
10
|
+
- @empiricalrun/llm@0.14.7
|
|
11
|
+
|
|
3
12
|
## 0.53.11
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"commit-and-create-pr.d.ts","sourceRoot":"","sources":["../../src/tools/commit-and-create-pr.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,wBAAwB,CAAC;AAQnD,UAAU,cAAc;IACtB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;CACd;AAED,wBAAgB,cAAc,CAAC,GAAG,EAAE,MAAM,GAAG,cAAc,CAiB1D;AA2CD,eAAO,MAAM,wBAAwB,EAAE,
|
|
1
|
+
{"version":3,"file":"commit-and-create-pr.d.ts","sourceRoot":"","sources":["../../src/tools/commit-and-create-pr.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,wBAAwB,CAAC;AAQnD,UAAU,cAAc;IACtB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;CACd;AAED,wBAAgB,cAAc,CAAC,GAAG,EAAE,MAAM,GAAG,cAAc,CAiB1D;AA2CD,eAAO,MAAM,wBAAwB,EAAE,IAwFtC,CAAC"}
|
|
@@ -74,12 +74,6 @@ Returns the URL of the created or updated pull request.`,
|
|
|
74
74
|
.split("\n")
|
|
75
75
|
.filter((line) => line && !line.includes(".bak"))
|
|
76
76
|
.map((line) => line.substring(3)); // Remove status prefix
|
|
77
|
-
if (modifiedFiles.length === 0) {
|
|
78
|
-
return {
|
|
79
|
-
isError: true,
|
|
80
|
-
result: "No modified files to commit",
|
|
81
|
-
};
|
|
82
|
-
}
|
|
83
77
|
for (const file of modifiedFiles) {
|
|
84
78
|
(0, child_process_1.execSync)(`git add "${file}"`);
|
|
85
79
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@empiricalrun/test-gen",
|
|
3
|
-
"version": "0.53.
|
|
3
|
+
"version": "0.53.12",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"tsx": "^4.16.2",
|
|
57
57
|
"typescript": "^5.3.3",
|
|
58
58
|
"zod": "^3.23.8",
|
|
59
|
-
"@empiricalrun/llm": "^0.14.
|
|
59
|
+
"@empiricalrun/llm": "^0.14.7",
|
|
60
60
|
"@empiricalrun/r2-uploader": "^0.3.8",
|
|
61
61
|
"@empiricalrun/test-run": "^0.7.7"
|
|
62
62
|
},
|