@empiricalrun/test-run 0.10.4 → 0.10.5

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.10.5
4
+
5
+ ### Patch Changes
6
+
7
+ - ff84083: feat: request verification for recording, more logs clean up
8
+
3
9
  ## 0.10.4
4
10
 
5
11
  ### Patch Changes
package/dist/lib/cmd.js CHANGED
@@ -79,7 +79,7 @@ async function spawnCmd(command, args, options) {
79
79
  }
80
80
  function setupProcessSignalHandlers(proc) {
81
81
  const handleSignal = async (signal) => {
82
- console.log(`\nReceived ${signal}, gracefully shutting down...`);
82
+ logger_1.logger.debug(`\nReceived ${signal}, gracefully shutting down...`);
83
83
  if (proc && !proc.killed) {
84
84
  // Forward the signal to the child process
85
85
  proc.kill(signal);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@empiricalrun/test-run",
3
- "version": "0.10.4",
3
+ "version": "0.10.5",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"