This commit is contained in:
Dax Raad
2026-03-26 20:40:28 -04:00
parent 282ab0f67d
commit 57f7d39281
6 changed files with 24 additions and 8 deletions
+2 -1
View File
@@ -80,7 +80,8 @@ export namespace Plugin {
get serverUrl(): URL {
return Server.url ?? new URL("http://localhost:4096")
},
$: Bun.$,
// @ts-expect-error
$: typeof Bun === "undefined" ? undefined : Bun.$,
}
for (const plugin of INTERNAL_PLUGINS) {
+1 -1
View File
@@ -1,4 +1,4 @@
import * as pty from "node-pty"
import * as pty from "@lydell/node-pty"
import type { Opts, Proc } from "./pty"
export type { Disp, Exit, Opts, Proc } from "./pty"