@empiricalrun/test-gen 0.38.27 → 0.38.28

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,11 @@
1
1
  # @empiricalrun/test-gen
2
2
 
3
+ ## 0.38.28
4
+
5
+ ### Patch Changes
6
+
7
+ - dc8d538: fix: ordering of npm install
8
+
3
9
  ## 0.38.27
4
10
 
5
11
  ### Patch Changes
package/dist/bin/index.js CHANGED
@@ -36,7 +36,7 @@ async function runAgent(testGenConfig) {
36
36
  const { specPath, testCase } = testGenConfig;
37
37
  if (process.env.LOG_URL) {
38
38
  try {
39
- await new reporter_1.TestGenUpdatesReporter().sendLogUrl(process.env.LOG_URL);
39
+ void new reporter_1.TestGenUpdatesReporter().sendLogUrl(process.env.LOG_URL);
40
40
  }
41
41
  catch (e) {
42
42
  console.warn("Failed to send log url to test gen update", e);
@@ -65,7 +65,7 @@ async function runAgent(testGenConfig) {
65
65
  });
66
66
  if (trace) {
67
67
  try {
68
- await new reporter_1.TestGenUpdatesReporter().sendAgentTraceUrl(trace.getTraceUrl());
68
+ void new reporter_1.TestGenUpdatesReporter().sendAgentTraceUrl(trace.getTraceUrl());
69
69
  }
70
70
  catch (e) {
71
71
  console.warn("Failed to send trace url as test gen update", e);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@empiricalrun/test-gen",
3
- "version": "0.38.27",
3
+ "version": "0.38.28",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"