Kaynağa Gözat

add debug paths command

Dax Raad 7 ay önce
ebeveyn
işleme
12b86829d9
1 değiştirilmiş dosya ile 11 ekleme ve 0 silme
  1. 11 0
      packages/opencode/src/cli/cmd/debug/index.ts

+ 11 - 0
packages/opencode/src/cli/cmd/debug/index.ts

@@ -1,3 +1,4 @@
+import { Global } from "../../../global"
 import { bootstrap } from "../../bootstrap"
 import { cmd } from "../cmd"
 import { FileCommand } from "./file"
@@ -15,6 +16,7 @@ export const DebugCommand = cmd({
       .command(FileCommand)
       .command(ScrapCommand)
       .command(SnapshotCommand)
+      .command(PathsCommand)
       .command({
         command: "wait",
         async handler() {
@@ -26,3 +28,12 @@ export const DebugCommand = cmd({
       .demandCommand(),
   async handler() {},
 })
+
+const PathsCommand = cmd({
+  command: "paths",
+  handler() {
+    for (const [key, value] of Object.entries(Global.Path)) {
+      console.log(key.padEnd(10), value)
+    }
+  },
+})