Skip to content

Commit cba9b44

Browse files
authored
chore(deps): upgrade vite-plus to 0.2.1 (#34)
## Problem The project is on vite-plus 0.1.x, which pulls Vitest in through the `@voidzero-dev/vite-plus-test` wrapper. v0.2.1 consumes upstream Vitest directly and drops that wrapper. ## Fix - Bump `vite-plus` and the `vite -> @voidzero-dev/vite-plus-core` override to `0.2.1` in the catalog. - Remove the `@voidzero-dev/vite-plus-test` wrapper: drop the `vitest` catalog entry, override, and `peerDependencyRules`. The project has no direct vitest usage (all tests import from `vite-plus/test`), so vitest now arrives transitively via vite-plus. ## Verification - Dependency tree resolves to a single `vitest@4.1.9`; no `@voidzero-dev/vite-plus-test` reference remains. - `vp test`: 31/31 passed (native Vitest banner `RUN v4.1.9`). - `vp check`: formatting, lint, and type checks pass.
1 parent e7642af commit cba9b44

4 files changed

Lines changed: 628 additions & 332 deletions

File tree

.vscode/settings.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,17 @@
55
"editor.formatOnSaveMode": "file",
66
"editor.codeActionsOnSave": {
77
"source.fixAll.oxc": "explicit"
8+
},
9+
"[javascript]": {
10+
"editor.defaultFormatter": "oxc.oxc-vscode"
11+
},
12+
"[javascriptreact]": {
13+
"editor.defaultFormatter": "oxc.oxc-vscode"
14+
},
15+
"[typescript]": {
16+
"editor.defaultFormatter": "oxc.oxc-vscode"
17+
},
18+
"[typescriptreact]": {
19+
"editor.defaultFormatter": "oxc.oxc-vscode"
820
}
921
}

CLAUDE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Docs are local at `node_modules/vite-plus/docs` or online at https://viteplus.de
1111
- [ ] Run `vp install` after pulling remote changes and before getting started.
1212
- [ ] Run `vp check` and `vp test` to format, lint, type check and test changes.
1313
- [ ] Check if there are `vite.config.ts` tasks or `package.json` scripts necessary for validation, run via `vp run <script>`.
14+
- [ ] If setup, runtime, or package-manager behavior looks wrong, run `vp env doctor` and include its output when asking for help.
1415

1516
<!--VITE PLUS END-->
1617

0 commit comments

Comments
 (0)