Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: AST-based transformation for Solid docs hooks
- Add solidTransform.ts module with regex-based transformation
- Transform useQuery({...}) to useQuery(() => ({...})) for Solid
- Skip broken string replacements in replaceContent
- Apply transformation before string replacements
  • Loading branch information
GEREGUR committed Feb 17, 2026
commit 8c4d0c68d1ea11efcc7c0fe3e9d15bdd4305ca98
13 changes: 12 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,17 @@
"zustand": "^4.5.2"
},
"devDependencies": {
"@babel/generator": "^7.29.1",
"@babel/parser": "^7.29.0",
"@babel/traverse": "^7.29.0",
"@babel/types": "^7.29.0",
"@content-collections/core": "^0.8.2",
"@content-collections/vite": "^0.2.4",
"@eslint/js": "^9.39.1",
"@playwright/test": "^1.57.0",
"@shikijs/transformers": "^1.10.3",
"@types/babel__generator": "^7.27.0",
"@types/babel__traverse": "^7.28.0",
"@types/express": "^5.0.3",
"@types/hast": "^3.0.4",
"@types/node": "^24.3.0",
Expand Down Expand Up @@ -159,6 +165,11 @@
"qs": ">=6.14.1",
"js-yaml": "^3.14.2",
"brace-expansion": ">=1.1.12"
}
},
"ignoredBuiltDependencies": [
"@sentry/cli",
"esbuild",
"msgpackr-extract"
]
}
}
Loading