Skip to content
Merged
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
112 changes: 100 additions & 12 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion webview-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
"identity-obj-proxy": "^3.0.0",
"jsdom": "^26.0.0",
"typescript": "5.8.3",
"vite": "6.3.5",
"vite": "6.3.6",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P3: Dependency pinning reduces patch adoption speed. Consider allowing patch updates automatically to reduce security lag. If acceptable, change to caret range:

Suggested change
"vite": "6.3.6",
"vite": "^6.3.6",

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[P3] No new issues introduced; version bump to vite 6.3.6 aligns with lockfile and peer deps. Proceed to merge after CI.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P3: Vite 6 requires Node ^18 || ^20 || >=22 (per engines). Consider adding an engines field in this package to enforce a minimum Node version in local dev/CI to prevent accidental usage of older Node versions.

Example:

"engines": { "node": ">=18" }

"vitest": "^3.2.3"
}
}
Loading