Skip to content

Commit 60ac898

Browse files
feat(vite): update to vite v7 (#292)
1 parent d74cb16 commit 60ac898

7 files changed

Lines changed: 70 additions & 61 deletions

File tree

.changeset/mean-bars-sort.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@tanstack/vite-config': minor
3+
---
4+
5+
feat: update to vite v7

integrations/vanilla/snap/cjs/utils.cjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
"use strict";
22
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
33
const optionalChaining = (data) => {
4-
var _a;
5-
return (_a = data == null ? void 0 : data.maybe) == null ? void 0 : _a.property;
4+
return data?.maybe?.property;
65
};
76
console.log(Promise.resolve().then(() => require("./dynamic.cjs")));
87
exports.optionalChaining = optionalChaining;

integrations/vanilla/snap/cjs/utils.cjs.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

integrations/vanilla/snap/esm/utils.js

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

integrations/vanilla/snap/esm/utils.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-lock.yaml

Lines changed: 58 additions & 52 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ catalog:
2020
'@types/react': ^19.1.13
2121
'@types/react-dom': ^19.1.9
2222
'@types/semver': ^7.7.1
23-
'@vitejs/plugin-react': ^4.7.0
24-
'@vitejs/plugin-vue': ^5.2.4
23+
'@vitejs/plugin-react': ^5.0.3
24+
'@vitejs/plugin-vue': ^6.0.1
2525
eslint: ^9.36.0
2626
eslint-plugin-import-x: ^4.16.1
2727
eslint-plugin-n: ^17.23.1
@@ -45,7 +45,7 @@ catalog:
4545
typedoc-plugin-markdown: 4.4.2
4646
typescript: ^5.9.2
4747
typescript-eslint: ^8.44.0
48-
vite: ^6.3.6
48+
vite: ^7.1.7
4949
vite-plugin-dts: 4.2.3
5050
vite-plugin-externalize-deps: ^0.9.0
5151
vite-tsconfig-paths: ^5.1.4

0 commit comments

Comments
 (0)