fix: resolve circular sibling imports causing runtime ReferenceError (#22752)

This commit is contained in:
Kit Langton
2026-04-15 23:41:34 -04:00
committed by GitHub
parent 509bc11f81
commit 0e20382396
23 changed files with 28 additions and 28 deletions

View File

@@ -3,8 +3,8 @@ import { Format } from "../format"
import { LSP } from "../lsp"
import { File } from "../file"
import { Snapshot } from "../snapshot"
import { Project } from "."
import { Vcs } from "."
import * as Project from "./project"
import * as Vcs from "./vcs"
import { Bus } from "../bus"
import { Command } from "../command"
import { Instance } from "./instance"

View File

@@ -5,7 +5,7 @@ import { AppFileSystem } from "@opencode-ai/shared/filesystem"
import { iife } from "@/util/iife"
import { Log } from "@/util"
import { LocalContext } from "../util"
import { Project } from "."
import * as Project from "./project"
import { WorkspaceContext } from "@/control-plane/workspace-context"
export interface InstanceContext {