Brendan Allan 2 روز پیش
والد
کامیت
fd7a2171fa
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      packages/opencode/src/effect/app-runtime.ts

+ 2 - 2
packages/opencode/src/effect/app-runtime.ts

@@ -52,7 +52,7 @@ import * as Effect from "effect/Effect"
 
 // Adjusts the default Config layer to ensure that plugins are always initialised before
 // any other layers read the current config
-const PluginPriorityConfigLayer = Layer.unwrap(
+const ConfigWithPluginPriority = Layer.unwrap(
   Effect.gen(function* () {
     const configSvc = yield* Config.Service
     const pluginSvc = yield* Plugin.Service
@@ -72,7 +72,7 @@ export const AppLayer = Layer.mergeAll(
   Bus.defaultLayer,
   Auth.defaultLayer,
   Account.defaultLayer,
-  PluginPriorityConfigLayer,
+  ConfigWithPluginPriority,
   Git.defaultLayer,
   Ripgrep.defaultLayer,
   FileTime.defaultLayer,