t3code-cli 0.9.0 → 0.9.1
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/dist/bin.js +2 -2
- package/package.json +1 -1
- package/src/cli/threads/callback.ts +1 -2
package/dist/bin.js
CHANGED
|
@@ -4470,7 +4470,7 @@ const callbackThreadCommand = make("callback", {
|
|
|
4470
4470
|
stderr: "ignore"
|
|
4471
4471
|
});
|
|
4472
4472
|
const handle = yield* spawner.spawn(proc);
|
|
4473
|
-
yield*
|
|
4473
|
+
yield* handle.unref.pipe(ignore);
|
|
4474
4474
|
yield* output.printInfo(`background callback scheduled: ${fromThreadId} -> ${targetThreadId} (pid: ${handle.pid})`);
|
|
4475
4475
|
return;
|
|
4476
4476
|
}
|
|
@@ -5055,7 +5055,7 @@ var T3Version = class extends Service()("t3cli/T3Version") {};
|
|
|
5055
5055
|
//#endregion
|
|
5056
5056
|
//#region src/version/layer.ts
|
|
5057
5057
|
const PackageJsonSchema = fromJsonString(Struct({ version: String$1 }));
|
|
5058
|
-
const T3VersionBundledLive = sync$2(T3Version, () => ({ version: "0.9.
|
|
5058
|
+
const T3VersionBundledLive = sync$2(T3Version, () => ({ version: "0.9.1" }));
|
|
5059
5059
|
effect(T3Version, gen(function* () {
|
|
5060
5060
|
const packageJson = yield* (yield* FileSystem).readFileString(fileURLToPath(new URL("../../package.json", import.meta.url)));
|
|
5061
5061
|
return { version: (yield* decodeUnknownEffect(PackageJsonSchema)(packageJson)).version };
|
package/package.json
CHANGED
|
@@ -67,8 +67,7 @@ export const callbackThreadCommand = Command.make(
|
|
|
67
67
|
});
|
|
68
68
|
|
|
69
69
|
const handle = yield* spawner.spawn(proc);
|
|
70
|
-
|
|
71
|
-
yield* reref.pipe(Effect.ignore);
|
|
70
|
+
yield* handle.unref.pipe(Effect.ignore);
|
|
72
71
|
|
|
73
72
|
yield* output.printInfo(
|
|
74
73
|
`background callback scheduled: ${fromThreadId} -> ${targetThreadId} (pid: ${handle.pid})`,
|