panrouter 6.3.2 → 6.3.3
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/package.json +1 -1
- package/pool-worker.mjs +2 -2
package/package.json
CHANGED
package/pool-worker.mjs
CHANGED
|
@@ -433,8 +433,8 @@ function _ensureServer() {
|
|
|
433
433
|
|
|
434
434
|
function trySpawn9router() {
|
|
435
435
|
try {
|
|
436
|
-
const r = spawn("
|
|
437
|
-
detached: true,
|
|
436
|
+
const r = spawn("npx", ["--yes", "9router"], {
|
|
437
|
+
detached: true, stdio: "ignore",
|
|
438
438
|
});
|
|
439
439
|
r.unref();
|
|
440
440
|
} catch (e) {
|