Skip to content

Commit e18f764

Browse files
committed
cleanup: remove dead prune/distill refs from prompts
1 parent bffa213 commit e18f764

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

lib/prompts/index.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@ export interface ToolFlags {
99
}
1010

1111
function processConditionals(template: string, flags: ToolFlags): string {
12-
const tools = ["manual", "compress", "prune", "distill"] as const
12+
const tools = ["manual", "compress"] as const
1313
const enabled = {
1414
manual: flags.manual,
1515
compress: flags.compress,
16-
prune: false,
17-
distill: false,
1816
}
1917

2018
let result = template

0 commit comments

Comments
 (0)