Skip to content

vp migrate beta test#1

Draft
fengmk2 wants to merge 1 commit into
mainfrom
vp-migrate-test
Draft

vp migrate beta test#1
fengmk2 wants to merge 1 commit into
mainfrom
vp-migrate-test

Conversation

@fengmk2

@fengmk2 fengmk2 commented Jun 25, 2026

Copy link
Copy Markdown
Owner

Summary

Rationale

Changes

Impact

Testing

Screenshots/Video

Checklist

  • Code follows the project's coding standards.
  • Unit tests covering the new feature have been added.
  • All existing tests pass.
  • The documentation has been updated to reflect the new feature

Additional Notes

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Code Review

This pull request updates the repository's dependency management by introducing a shared catalog for "vite" and "vitest" across various packages and examples, alongside updating "vite-plus" to a specific pre-release version. Additionally, it formats VS Code settings, removes "oxlint-tsgolint", adopts "lazyPlugins" in the core Vite configuration, and updates the testing suite with Playwright browser support. The review feedback suggests improving dependency consistency by using the "catalog:" protocol for "vite-plus" in the workspace overrides and pinning the "playwright" dependency in the test package to a specific version instead of using a wildcard.

Important

The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.

Comment thread pnpm-workspace.yaml
"@tiptap/pm": "^3.0.0"
vite: "catalog:"
vitest: "catalog:"
vite-plus: https://pkg.pr.new/voidzero-dev/vite-plus@529396f85556c9ae7650dad6b52257b94a1fd0d2

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

medium

To maintain consistency and avoid duplication, you can use the "catalog:" protocol for vite-plus in the overrides section, just as you did for vite and vitest. This ensures that when the vite-plus version is updated in the catalog section, it automatically propagates to the overrides without needing manual updates in multiple places.

  vite-plus: "catalog:"

Comment thread tests/package.json
"vitest-browser-react": "^2.2.0"
"vitest-browser-react": "^2.2.0",
"@vitest/browser-playwright": "4.1.9",
"playwright": "*",

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

medium

To prevent potential version mismatches between the Playwright test runner and the browser drivers, it is highly recommended to pin the playwright dependency to match the version of @playwright/test (which is 1.60.0) instead of using *.

Suggested change
"playwright": "*",
"playwright": "1.60.0",

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant