Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Pull request overview
Bumps the docs site’s VitePress dependency from 2.0.0-alpha.16 to 2.0.0-alpha.17, updating the lockfile to match and introducing a small (currently commented) config change in the VitePress config.
Changes:
- Update
vitepressto2.0.0-alpha.17inpackage.json. - Regenerate
pnpm-lock.yamlto reflect the new VitePress version and updated transitive dependencies. - Add a commented-out import placeholder for
vitepress-plugin-llmsin.vitepress/config.ts.
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
package.json |
Bumps vitepress to 2.0.0-alpha.17. |
pnpm-lock.yaml |
Lockfile updates for the VitePress bump and transitive dependency changes. |
.vitepress/config.ts |
Adds a commented import line related to an (unused) plugin. |
Files not reviewed (1)
- pnpm-lock.yaml: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| '@iconify-json/simple-icons': 1.2.70 | ||
| '@shikijs/core': 3.22.0 | ||
| '@shikijs/transformers': 3.21.0 | ||
| '@shikijs/transformers': 3.23.0 |
There was a problem hiding this comment.
The lockfile now resolves VitePress to use a mixed Shiki set (@shikijs/core/@shikijs/types at 3.22.0 but @shikijs/transformers at 3.23.0). Since @shikijs/transformers@3.23.0 depends on @shikijs/core@3.23.0, this introduces duplicate Shiki cores and can cause subtle runtime incompatibilities. Consider aligning Shiki-related versions (e.g., via pnpm.overrides/dependency bumps so core/types/transformers match) and then regenerating the lockfile.
| '@shikijs/transformers': 3.23.0 | |
| '@shikijs/transformers': 3.22.0 |
| groupIconMdPlugin, | ||
| groupIconVitePlugin, | ||
| } from 'vitepress-plugin-group-icons' | ||
| // import llmstxt from 'vitepress-plugin-llms' |
There was a problem hiding this comment.
This adds a commented-out import for vitepress-plugin-llms, but the plugin isn’t enabled (and doesn’t appear in package.json). Keeping commented code in the config can be confusing long-term—either remove this line (and rely on the existing commented block further down if needed), or add the dependency and wire it up for real.
| // import llmstxt from 'vitepress-plugin-llms' |
No description provided.