feat: unwrap 11 util namespaces to flat exports + barrel (#22739)

This commit is contained in:
Kit Langton 2026-04-15 23:15:58 -04:00 committed by GitHub
parent b0eae5e12f
commit 343a564183
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
188 changed files with 1182 additions and 1193 deletions

View file

@ -4,15 +4,15 @@ import path from "path"
import { pathToFileURL, fileURLToPath } from "url"
import { createMessageConnection, StreamMessageReader, StreamMessageWriter } from "vscode-jsonrpc/node"
import type { Diagnostic as VSCodeDiagnostic } from "vscode-languageserver-types"
import { Log } from "../util/log"
import { Process } from "../util/process"
import { Log } from "../util"
import { Process } from "../util"
import { LANGUAGE_EXTENSIONS } from "./language"
import z from "zod"
import type { LSPServer } from "./server"
import { NamedError } from "@opencode-ai/shared/util/error"
import { withTimeout } from "../util/timeout"
import { Instance } from "../project/instance"
import { Filesystem } from "../util/filesystem"
import { Filesystem } from "../util"
const DIAGNOSTICS_DEBOUNCE_MS = 150