-
Notifications
You must be signed in to change notification settings - Fork 12
chore(deps-dev): bump @types/node from 24.13.2 to 26.1.1 in /docs #2345
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
base: staging
Are you sure you want to change the base?
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 |
|---|---|---|
|
|
@@ -19,7 +19,7 @@ | |
| "vue-json-pretty": "^2.6.0" | ||
| }, | ||
| "devDependencies": { | ||
| "@types/node": "^25.9.2", | ||
| "@types/node": "^26.1.1", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Prompt To Fix With AIThis is a comment left during a code review.
Path: docs/package.json
Line: 22
Comment:
**Lockfile Still Stale** This manifest now requires `@types/node` `^26.1.1`, but the docs importer in `pnpm-lock.yaml` still records the old `@types/node` specifier and resolution. The docs Docker build runs `pnpm install --frozen-lockfile`, so a fresh build can stop at install time with a lockfile mismatch before the docs build starts. Please regenerate and commit the pnpm lockfile update with this dependency bump.
How can I resolve this? If you propose a fix, please make it concise. |
||
| "mermaid": "^11.15.0", | ||
| "ts-morph": "^28.0.0", | ||
| "tsx": "^4.21.0", | ||
|
|
||
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.
Changing the docs manifest to require
@types/node^26.1.1without the matchingpnpm-lock.yamlupdate leaves the install state inconsistent. A fresh CI run usingpnpm install --frozen-lockfilecan fail before the docs build runs because the lockfile still records the old26.0.1resolution.Prompt To Fix With AI