Prechádzať zdrojové kódy

ci: tweak changelog ensure all cmd/ things fall under tui section

Aiden Cline 1 mesiac pred
rodič
commit
dc3e731afe
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      script/changelog.ts

+ 1 - 1
script/changelog.ts

@@ -64,7 +64,7 @@ export async function getCommits(from: string, to: string): Promise<Commit[]> {
     const areas = new Set<string>()
 
     for (const file of files.split("\n").filter(Boolean)) {
-      if (file.startsWith("packages/opencode/src/cli/cmd/tui/")) areas.add("tui")
+      if (file.startsWith("packages/opencode/src/cli/cmd/")) areas.add("tui")
       else if (file.startsWith("packages/opencode/")) areas.add("core")
       else if (file.startsWith("packages/desktop/src-tauri/")) areas.add("tauri")
       else if (file.startsWith("packages/desktop/")) areas.add("app")