Comparing version 0.8.2 to 0.8.3
#!/usr/bin/env node | ||
import { execFileSync } from "node:child_process"; | ||
import { execFileSync, fork } from "node:child_process"; | ||
import { createRequire } from "node:module"; | ||
@@ -24,2 +24,5 @@ | ||
await import(cliModule); | ||
const child = await fork(`node_modules/${cliModule}`, process.argv); | ||
await new Promise(() => { | ||
child.on("exit", (code) => process.exit(code)); | ||
}); |
{ | ||
"name": "queue-run", | ||
"description": "👋 Backends for JAMstack apps: APIs, job queues, scheduled jobs, WebSocket notifications, and more …", | ||
"version": "0.8.2", | ||
"version": "0.8.3", | ||
"exports": { | ||
@@ -60,3 +60,3 @@ ".": "./dist/index.js", | ||
], | ||
"gitHead": "777d57d6e70fb289d609e73e24698f51a6f06534" | ||
"gitHead": "ffb93894240dbead5e19f1f367e25da29952a192" | ||
} |
3680008
37097