fix(ai,coding-agent): use node:readline import prefix for Deno compatibility

closes #2885
This commit is contained in:
Mario Zechner
2026-04-08 01:59:34 +02:00
parent 773f91f40a
commit 377eca9684
5 changed files with 11 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env node
import { createInterface } from "node:readline";
import { existsSync, readFileSync, writeFileSync } from "fs";
import { createInterface } from "readline";
import { getOAuthProvider, getOAuthProviders } from "./utils/oauth/index.js";
import type { OAuthCredentials, OAuthProviderId } from "./utils/oauth/types.js";