posthive-cli 0.1.6 → 0.1.8
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/index.js +9 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -133,17 +133,23 @@ 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);
|
|
137
136
|
}
|
|
138
137
|
catch (err) {
|
|
139
138
|
fail(err instanceof Error ? err.message : String(err));
|
|
140
139
|
}
|
|
140
|
+
// Delay exit by a tick so libuv finishes closing the local callback
|
|
141
|
+
// server's handles first — calling process.exit() synchronously here
|
|
142
|
+
// can race with that cleanup and crash on Windows. Nothing below this
|
|
143
|
+
// block must run, since API_KEY was resolved before login wrote the
|
|
144
|
+
// new credentials.
|
|
145
|
+
await new Promise(r => setImmediate(r));
|
|
146
|
+
process.exit(0);
|
|
141
147
|
}
|
|
142
|
-
if (command === "logout") {
|
|
148
|
+
else if (command === "logout") {
|
|
143
149
|
await runLogout();
|
|
144
150
|
process.exit(0);
|
|
145
151
|
}
|
|
146
|
-
if (!API_KEY) {
|
|
152
|
+
else if (!API_KEY) {
|
|
147
153
|
fail("Not logged in. Run `posthive login`, or set POSTHIVE_API_KEY for CI/scripts.");
|
|
148
154
|
}
|
|
149
155
|
if (command === "whoami") {
|
package/package.json
CHANGED