@empiricalrun/test-run 0.8.3 → 0.8.4

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-run
2
2
 
3
+ ## 0.8.4
4
+
5
+ ### Patch Changes
6
+
7
+ - a7f2e24: fix: downgrade tsx logs to warn instead of errors
8
+
3
9
  ## 0.8.3
4
10
 
5
11
  ### Patch Changes
@@ -252,11 +252,11 @@ async function getProjectsFromPlaywrightConfig(platform) {
252
252
  tsxImport = module;
253
253
  })
254
254
  .catch(() => {
255
- console.error("Failed to import tsx: --->");
255
+ console.warn("Failed to import tsx: --->");
256
256
  });
257
257
  }
258
258
  if (!tsxImport) {
259
- console.error("tsx module not available");
259
+ console.warn("tsx module not available");
260
260
  return [];
261
261
  }
262
262
  const repoDir = process.cwd();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@empiricalrun/test-run",
3
- "version": "0.8.3",
3
+ "version": "0.8.4",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"