Conversation
There was a problem hiding this comment.
Code Review
This pull request updates vite-plus and vitest to version 0.1.16, along with updates to oxlint and oxfmt. A new pre-commit hook was added but lacks a shebang for portability. Additionally, a dependency version mismatch exists in the lockfile where esbuild remains at version 0.27.7 despite a new requirement for version 0.28.0.
| '@vitejs/devtools': ^0.0.0-alpha.31 | ||
| esbuild: ^0.27.0 | ||
| '@vitejs/devtools': ^0.1.0 | ||
| esbuild: ^0.28.0 |
There was a problem hiding this comment.
The peer dependency requirement for esbuild has been updated to ^0.28.0 in @voidzero-dev/vite-plus-core@0.1.16. However, the lockfile indicates that esbuild@0.27.7 is still being resolved and passed to this package (as seen in the resolution strings for vite-plus-core and other packages in the dependency graph). This version mismatch does not satisfy the new requirement and may lead to installation warnings or runtime issues. Please update esbuild in your dependencies to a version that satisfies ^0.28.0.
| @@ -0,0 +1 @@ | |||
| vp staged | |||
deffa08 to
ec428f4
Compare
Disable vitest/require-mock-type-parameters lint rule introduced in the new version.
ec428f4 to
b7e7514
Compare
Co-authored-by: Willow (GHOST) <git@willow.sh>
🔗 Linked issue
🧭 Context
Disable vitest/require-mock-type-parameters lint rule introduced in the new version.