chore: upgrade vite-plus to 0.1.19-alpha.3#1
Conversation
commit: |
There was a problem hiding this comment.
Code Review
This pull request updates the documentation in AGENTS.md to clarify the usage of built-in vp commands versus custom scripts and introduces a CI integration section for GitHub Actions. Additionally, it pins the versions of vite, vitest, and vite-plus in pnpm-workspace.yaml. A review comment suggests updating the CI example to use vp run test instead of vp test to ensure the project's custom test suite is executed as intended.
| with: | ||
| cache: true | ||
| - run: vp check | ||
| - run: vp test |
There was a problem hiding this comment.
Since this project defines a custom test task in vite.config.ts (which runs Playwright), and the documentation clarifies that built-in commands like vp test always run the built-in tool (Vitest), the CI example should use vp run test to ensure the project's specific test suite is executed.
| - run: vp test | |
| - run: vp run test |
Upgrade vite-plus and related packages to 0.1.19-alpha.3 alpha version.