-
Notifications
You must be signed in to change notification settings - Fork 16
Upgrade astro and its related dependencies for ENSNode Docs website
#1979
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,13 +16,13 @@ | |
| "generate:openapi": "pnpm --filter ensapi exec tsx --tsconfig tsconfig.json ../../scripts/generate-ensapi-openapi.mts" | ||
| }, | ||
| "dependencies": { | ||
| "@astrojs/mdx": "^4.3.9", | ||
| "@astrojs/mdx": "^5.0.3", | ||
| "@astrojs/react": "catalog:", | ||
| "@astrojs/sitemap": "^3.6.0", | ||
| "@astrojs/starlight": "^0.36.1", | ||
| "@astrojs/starlight-tailwind": "^4.0.1", | ||
| "@astrojs/sitemap": "^3.7.2", | ||
| "@astrojs/starlight": "^0.38.3", | ||
| "@astrojs/starlight-tailwind": "^5.0.0", | ||
| "@astrojs/tailwind": "catalog:", | ||
|
Comment on lines
20
to
24
|
||
| "@fontsource/inter": "^5.2.5", | ||
| "@fontsource/inter": "^5.2.8", | ||
| "@headlessui-float/react": "0.15.1", | ||
| "@headlessui/react": "^2.2.0", | ||
| "@iconify-json/lucide": "^1.2.52", | ||
|
|
@@ -33,7 +33,7 @@ | |
| "astro": "catalog:", | ||
| "astro-font": "catalog:", | ||
| "astro-icon": "^1.1.5", | ||
| "astro-mermaid": "^1.0.4", | ||
| "astro-mermaid": "^2.0.1", | ||
| "astro-seo": "catalog:", | ||
| "classcat": "5.0.5", | ||
| "fuse.js": "^7.1.0", | ||
|
|
@@ -42,8 +42,8 @@ | |
| "react-dom": "^18", | ||
| "react-wrap-balancer": "^1.1.1", | ||
| "sharp": "^0.33.5", | ||
| "starlight-llms-txt": "^0.5.0", | ||
| "starlight-sidebar-topics": "^0.4.1", | ||
| "starlight-llms-txt": "^0.8.1", | ||
| "starlight-sidebar-topics": "^0.7.1", | ||
| "tailwindcss": "4.1.5" | ||
| }, | ||
| "devDependencies": { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧹 Nitpick | 🔵 Trivial
Consider moving these Astro ecosystem versions into the workspace catalog.
Keeping Astro-adjacent versions centralized reduces drift across docs packages during future framework upgrades.
📦 Suggested catalog refactor
Based on learnings: Use pnpm for package management; leverage workspaces with catalog for dependency versioning.
Also applies to: 36-36, 45-46
🤖 Prompt for AI Agents