chore: generate

This commit is contained in:
opencode-agent[bot] 2026-05-15 17:37:07 +00:00
commit 48293c5271
3 changed files with 24 additions and 11 deletions

View file

@ -174,9 +174,9 @@ export async function create(input: {
const updatePushDiagnostics = (filePath: string, next: Diagnostic[]) => {
pushDiagnostics.set(filePath, next)
void busRuntime.runPromise((svc) =>
svc.publish(Event.Diagnostics, { path: filePath, serverID: input.serverID }).pipe(
Effect.provideService(InstanceRef, instance),
),
svc
.publish(Event.Diagnostics, { path: filePath, serverID: input.serverID })
.pipe(Effect.provideService(InstanceRef, instance)),
)
}
const updatePullDiagnostics = (filePath: string, next: Diagnostic[]) => {