refactor: change pathToFileURL imports from bun to url module

This commit is contained in:
Dax Raad
2026-03-09 14:52:25 -04:00
parent f20ee2fad2
commit 831eb6881b
3 changed files with 4 additions and 3 deletions

View File

@@ -31,7 +31,8 @@ import { Flag } from "../flag/flag"
import { ulid } from "ulid"
import { spawn } from "child_process"
import { Command } from "../command"
import { $, fileURLToPath, pathToFileURL } from "bun"
import { $ } from "bun"
import { pathToFileURL, fileURLToPath } from "url"
import { ConfigMarkdown } from "../config/markdown"
import { SessionSummary } from "./summary"
import { NamedError } from "@opencode-ai/util/error"