Add Liquid template language support for Shopify themes
- Add 'liquid' to Language type and default include patterns - Create LiquidExtractor with regex-based extraction (tree-sitter-liquid has ABI issues) - Extract render/include/section references as component nodes - Extract schema blocks as constant nodes with parsed names - Extract assign statements as variable nodes - Create file relationship edges for snippet/section references Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.5
parent
8d1fb680e5
commit
a4ddedb197
+3
-2
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@colbymchenry/codegraph",
|
||||
"version": "0.2.5",
|
||||
"version": "0.2.6",
|
||||
"description": "A local-first code intelligence system that builds a semantic knowledge graph from any codebase",
|
||||
"main": "dist/index.js",
|
||||
"types": "dist/index.d.ts",
|
||||
@@ -31,9 +31,9 @@
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@xenova/transformers": "^2.17.0",
|
||||
"figlet": "^1.8.0",
|
||||
"better-sqlite3": "^11.0.0",
|
||||
"commander": "^14.0.2",
|
||||
"figlet": "^1.8.0",
|
||||
"sqlite-vss": "^0.1.2",
|
||||
"tree-sitter": "^0.22.4",
|
||||
"tree-sitter-c": "^0.23.4",
|
||||
@@ -43,6 +43,7 @@
|
||||
"tree-sitter-java": "^0.23.5",
|
||||
"tree-sitter-javascript": "^0.23.1",
|
||||
"tree-sitter-kotlin": "^0.3.8",
|
||||
"tree-sitter-liquid": "github:hankthetank27/tree-sitter-liquid",
|
||||
"tree-sitter-php": "^0.23.11",
|
||||
"tree-sitter-python": "^0.23.6",
|
||||
"tree-sitter-ruby": "^0.23.1",
|
||||
|
||||
Reference in New Issue
Block a user