summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--packages/opencode/src/format/formatter.ts23
-rw-r--r--packages/opencode/src/session/index.ts2
2 files changed, 8 insertions, 17 deletions
diff --git a/packages/opencode/src/format/formatter.ts b/packages/opencode/src/format/formatter.ts
index 3f24debfc..353a50668 100644
--- a/packages/opencode/src/format/formatter.ts
+++ b/packages/opencode/src/format/formatter.ts
@@ -1,5 +1,7 @@
import { App } from "../app/app"
import { BunProc } from "../bun"
+import { Filesystem } from "../util/filesystem"
+import path from "path"
export interface Info {
name: string
@@ -62,23 +64,12 @@ export const prettier: Info = {
".gql",
],
async enabled() {
- // this is more complicated because we only want to use prettier if it's
- // being used with the current project
- try {
- const proc = Bun.spawn({
- cmd: [BunProc.which(), "run", "prettier", "--version"],
- cwd: App.info().path.cwd,
- env: {
- BUN_BE_BUN: "1",
- },
- stdout: "ignore",
- stderr: "ignore",
- })
- const exit = await proc.exited
- return exit === 0
- } catch {
- return false
+ const app = App.info()
+ const nms = await Filesystem.findUp("node_modules", app.path.cwd, app.path.root)
+ for (const item of nms) {
+ if (await Bun.file(path.join(item, ".bin", "prettier")).exists()) return true
}
+ return false
},
}
diff --git a/packages/opencode/src/session/index.ts b/packages/opencode/src/session/index.ts
index 0e1861f28..7b885e105 100644
--- a/packages/opencode/src/session/index.ts
+++ b/packages/opencode/src/session/index.ts
@@ -390,7 +390,7 @@ export namespace Session {
}),
).then((x) => x.flat())
- if (true)
+ if (input.mode === "plan")
input.parts.push({
type: "text",
text: PROMPT_PLAN,