refactor: rename workspace adapters (#25272)

This commit is contained in:
Kit Langton 2026-05-01 07:36:52 -04:00 committed by GitHub
commit 8c79c58c4d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
25 changed files with 225 additions and 225 deletions

View file

@ -45,7 +45,7 @@ export type WorkspaceTarget =
headers?: HeadersInit
}
export type WorkspaceAdaptor = {
export type WorkspaceAdapter = {
name: string
description: string
configure(config: WorkspaceInfo): WorkspaceInfo | Promise<WorkspaceInfo>
@ -60,7 +60,7 @@ export type PluginInput = {
directory: string
worktree: string
experimental_workspace: {
register(type: string, adaptor: WorkspaceAdaptor): void
register(type: string, adapter: WorkspaceAdapter): void
}
serverUrl: URL
$: BunShell