Merged
Conversation
Review Summary by QodoUpdate dependencies to latest available versions
WalkthroughsDescription• Update multiple dependencies to latest versions • Upgrade fumadocs packages to 16.7.14 and 14.2.13 • Update framer-motion, react, and image-response packages • Refresh pnpm lock file with new dependency versions Diagramflowchart LR
A["Package Dependencies"] -- "upgrade versions" --> B["fumadocs packages"]
A -- "upgrade versions" --> C["framer-motion"]
A -- "upgrade versions" --> D["react & image-response"]
B --> E["Lock File Updated"]
C --> E
D --> E
File Changes1. apps/docs/package.json
|
Code Review by Qodo
|
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Comment on lines
+3005
to
+3007
| shiki@4.0.2: | ||
| resolution: {integrity: sha512-eAVKTMedR5ckPo4xne/PjYQYrU3qx78gtJZ+sHlXEg5IHhhoQhMfZVzetTYuaJS0L2Ef3AcCRzCHV8T0WI6nIQ==} | ||
| engines: {node: '>=20'} |
There was a problem hiding this comment.
1. Node 20 required now 🐞 Bug ☼ Reliability
The updated dependency graph includes shiki@4.x / @shikijs/* which declare `engines: { node: ">=20"
}`. Without declaring/enforcing Node >=20 at the repo/app level, installs or docs tooling will break
for any environment still using Node 18/19.
Agent Prompt
### Issue description
The updated deps introduce packages (e.g., `shiki@4.x`) that require Node.js >=20, but the repo does not formally declare this requirement. This can cause installation/tooling failures for contributors or deployments running Node <20.
### Issue Context
CI uses Node 20, but local/dev/prod environments may differ unless the minimum Node version is declared and enforced.
### Fix Focus Areas
- pnpm-lock.yaml[1472-1478]
- pnpm-lock.yaml[3005-3007]
- .github/workflows/ci.yml[23-27]
- package.json[1-34]
### Suggested fix (pick one)
**Option A (recommended if Node >=20 is intended):**
1. Add an `engines` field (e.g., `{ "node": ">=20" }`) to the root `package.json` (and/or `apps/docs/package.json`).
2. Optionally add a `.nvmrc` or `.node-version` file set to `20` to guide local development.
3. Document the requirement in README(s).
**Option B (if Node <20 must remain supported):**
Pin/adjust the upgraded docs deps to versions that do not pull in `shiki@4` / `@shikijs/*@4` (Node>=20) and regenerate the lockfile accordingly.
ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.