spooder 4.2.13 → 4.2.14

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cli.ts +1 -3
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "spooder",
3
3
  "type": "module",
4
- "version": "4.2.13",
4
+ "version": "4.2.14",
5
5
  "exports": {
6
6
  ".": {
7
7
  "bun": "./src/api.ts",
package/src/cli.ts CHANGED
@@ -84,9 +84,7 @@ async function start_server() {
84
84
  capture_stream(proc.stderr as ReadableStream, process.stderr);
85
85
  }
86
86
 
87
- await proc.exited;
88
-
89
- const proc_exit_code = proc.exitCode;
87
+ const proc_exit_code = await proc.exited;
90
88
  log('server exited with code {%s}', proc_exit_code);
91
89
 
92
90
  if (proc_exit_code !== 0) {