Skip to content

Commit cf821d7

Browse files
build(deps-dev): bump vite from 6.3.5 to 6.3.6 (#979)
* build(deps-dev): bump vite from 6.3.5 to 6.3.6 Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 6.3.5 to 6.3.6. - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v6.3.6/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v6.3.6/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-version: 6.3.6 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <[email protected]> * fix: type check error --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dribble-njr <[email protected]>
1 parent ce7031e commit cf821d7

File tree

4 files changed

+79
-359
lines changed

4 files changed

+79
-359
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ updates:
1010
target-branch: main
1111
ignore:
1212
- dependency-name: vue
13+
- dependency-name: vite
1314

1415
open-pull-requests-limit: 100
1516
groups:

apps/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
"tailwindcss": "^4.1.13",
9494
"unplugin-auto-import": "^20.1.0",
9595
"unplugin-vue-components": "^29.0.0",
96-
"vite": "^6.3.4",
96+
"vite": "^6.3.6",
9797
"vite-plugin-node-polyfills": "^0.24.0",
9898
"vite-plugin-pwa": "^1.0.3",
9999
"vite-plugin-radar": "^0.10.0",

apps/web/vite.config.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,7 @@ export default defineConfig(({ mode }) => {
7070
VitePluginRadar({
7171
analytics: { id: `G-7NZL3PZ0NK` },
7272
}),
73-
process.env.ANALYZE === `true`
74-
&& visualizer({ emitFile: true, filename: `stats.html` }),
73+
...(process.env.ANALYZE === `true` ? [visualizer({ emitFile: true, filename: `stats.html` }) as any] : []),
7574
AutoImport({
7675
imports: [`vue`, `pinia`, `@vueuse/core`],
7776
dirs: [`./src/stores`, `./src/utils/toast`, `./src/composables`],

0 commit comments

Comments
 (0)