refactor(tools): remove unused ast-grep tools (languages, analyze, transform)

This commit is contained in:
YeonGyu-Kim
2025-12-05 00:09:29 +09:00
parent 3d29214c29
commit 2a9761b0b0
2 changed files with 0 additions and 15 deletions

View File

@@ -1,23 +1,14 @@
import {
ast_grep_search,
ast_grep_replace,
ast_grep_languages,
ast_grep_analyze,
ast_grep_transform,
} from "./tools"
export const builtinTools = {
ast_grep_search,
ast_grep_replace,
ast_grep_languages,
ast_grep_analyze,
ast_grep_transform,
}
export {
ast_grep_search,
ast_grep_replace,
ast_grep_languages,
ast_grep_analyze,
ast_grep_transform,
}

View File

@@ -15,9 +15,6 @@ import {
import {
ast_grep_search,
ast_grep_replace,
ast_grep_languages,
ast_grep_analyze,
ast_grep_transform,
} from "./ast-grep"
import { safe_grep } from "./safe-grep"
@@ -36,8 +33,5 @@ export const builtinTools = {
lsp_code_action_resolve,
ast_grep_search,
ast_grep_replace,
ast_grep_languages,
ast_grep_analyze,
ast_grep_transform,
safe_grep,
}