diff options
| author | Brendan Allan <[email protected]> | 2026-04-15 11:40:33 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-04-15 11:40:33 +0800 |
| commit | 4246368a881f262c2d548e29977f86e03305cb0c (patch) | |
| tree | 5562e9e1c5e946860d4cb5916bd70f90e465a4af /packages | |
| parent | 548d9ac7263357b59963318524cbdc697d16565e (diff) | |
| download | opencode-4246368a881f262c2d548e29977f86e03305cb0c.tar.gz opencode-4246368a881f262c2d548e29977f86e03305cb0c.zip | |
fix(bootstrap): await plugin initialization
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/opencode/src/project/bootstrap.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/opencode/src/project/bootstrap.ts b/packages/opencode/src/project/bootstrap.ts index ed71837de..a1f2a8cb0 100644 --- a/packages/opencode/src/project/bootstrap.ts +++ b/packages/opencode/src/project/bootstrap.ts @@ -15,9 +15,9 @@ import * as Effect from "effect/Effect" export const InstanceBootstrap = Effect.gen(function* () { Log.Default.info("bootstrapping", { directory: Instance.directory }) + yield* Plugin.Service.use((svc) => svc.init()) yield* Effect.all( [ - Plugin.Service, LSP.Service, ShareNext.Service, Format.Service, |
