posthive-cli 0.1.6 → 0.1.7

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/dist/index.js +4 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -133,7 +133,10 @@ if (command === "login") {
133
133
  const loginUrl = (str(flags, "api-url") ?? process.env.POSTHIVE_API_URL ?? DEFAULT_API_URL).replace(/\/$/, "");
134
134
  try {
135
135
  await runLogin(loginUrl);
136
- process.exit(0);
136
+ // Delay exit by a tick so libuv finishes closing the local callback
137
+ // server's handles first — calling process.exit() synchronously here
138
+ // can race with that cleanup and crash on Windows.
139
+ setImmediate(() => process.exit(0));
137
140
  }
138
141
  catch (err) {
139
142
  fail(err instanceof Error ? err.message : String(err));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "posthive-cli",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "Posthive CLI — schedule posts to 11 social platforms from the command line or any AI agent (Claude Code, OpenClaw, Cursor)",
5
5
  "type": "module",
6
6
  "bin": {