laxy-verify 1.1.6 → 1.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.
- package/dist/cli.js +3 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -154,7 +154,9 @@ async function run() {
|
|
|
154
154
|
// ── 서브커맨드 처리 ──────────────────────────────────────────────────────
|
|
155
155
|
if (args.subcommand === "login") {
|
|
156
156
|
await (0, auth_js_1.login)(args.subcommandArg);
|
|
157
|
-
process.exit(
|
|
157
|
+
// Windows: fetch()의 TCP 소켓이 closing 중에 process.exit()을 즉시 호출하면
|
|
158
|
+
// UV_HANDLE_CLOSING Assertion 발생. setTimeout으로 UV 루프에 정리 시간을 준다.
|
|
159
|
+
setTimeout(() => process.exit(0), 100);
|
|
158
160
|
return;
|
|
159
161
|
}
|
|
160
162
|
if (args.subcommand === "logout") {
|