diff options
| author | Dax Raad <[email protected]> | 2026-04-16 13:32:22 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2026-04-16 13:32:22 -0400 |
| commit | cefa7f04c66fce1fb586736222a2d6b8a5609ded (patch) | |
| tree | 29efcddc8eb0838ffd18082048ea639182f7db70 | |
| parent | 03e20e6ac125b6a792c567451c2f904c6ed6941c (diff) | |
| download | opencode-cefa7f04c66fce1fb586736222a2d6b8a5609ded.tar.gz opencode-cefa7f04c66fce1fb586736222a2d6b8a5609ded.zip | |
core: reorganize ConfigPaths module export for cleaner dependency management
| -rw-r--r-- | packages/opencode/src/config/config.ts | 2 | ||||
| -rw-r--r-- | packages/opencode/src/config/paths.ts | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/packages/opencode/src/config/config.ts b/packages/opencode/src/config/config.ts index 6b6d74ed8..a738ebf13 100644 --- a/packages/opencode/src/config/config.ts +++ b/packages/opencode/src/config/config.ts @@ -20,7 +20,6 @@ import { Event } from "../server/event" import { Account } from "@/account" import { isRecord } from "@/util/record" import { InvalidError, JsonError } from "./error" -import * as ConfigPaths from "./paths" import type { ConsoleState } from "./console-state" import { AppFileSystem } from "@opencode-ai/shared/filesystem" import { InstanceState } from "@/effect" @@ -38,6 +37,7 @@ import { ConfigParse } from "./parse" import { ConfigPermission } from "./permission" import { ConfigProvider } from "./provider" import { ConfigSkills } from "./skills" +import { ConfigPaths } from "./paths" const log = Log.create({ service: "config" }) diff --git a/packages/opencode/src/config/paths.ts b/packages/opencode/src/config/paths.ts index faf585d9b..dcf0c940f 100644 --- a/packages/opencode/src/config/paths.ts +++ b/packages/opencode/src/config/paths.ts @@ -1,3 +1,5 @@ +export * as ConfigPaths from "./paths" + import path from "path" import { Filesystem } from "@/util" import { Flag } from "@/flag/flag" |
