Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 10, 2025

Bumps the vite group with 13 updates:

Package From To
@julr/vite-plugin-validate-env 1.3.0 2.2.0
@vitejs/plugin-react-swc 3.8.0 4.2.1
@vitest/coverage-v8 1.6.1 4.0.8
vite 5.4.14 7.2.2
vite-plugin-checker 0.7.2 0.11.0
vite-plugin-compression2 0.11.0 2.3.1
vite-plugin-radar 0.9.6 0.10.1
vite-plugin-svgr 4.3.0 4.5.0
vite-tsconfig-paths 4.3.2 5.1.4
vitest 1.6.1 4.0.8
vite-plugin-dts 3.9.1 4.5.4
vite-plugin-lib-inject-css 1.3.0 2.2.2
@storybook/react-vite 8.5.8 10.0.6

Updates @julr/vite-plugin-validate-env from 1.3.0 to 2.2.0

Release notes

Sourced from @​julr/vite-plugin-validate-env's releases.

v2.2.0

Changes

  • Add support for Vite 7
    View changes on GitHub

v2.1.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v2.0.0

   🚨 Breaking Changes

    View changes on GitHub
Commits
  • 6309794 chore: release v2.2.0
  • 4ba3ad8 chore: update dependencies and accept vite 7 as peer deps
  • a3ea9c1 docs: fix missing validator and schema in env.ts example (#42)
  • 7f82fe1 docs: fix TypeScript declaration filename to match Vite conventions (#43)
  • 0bf9d7a chore: release v2.1.0
  • b5b0e98 chore: update dependencies
  • 47026f1 feat: expose function for validation without running Vite (#36)
  • 15d4300 fix: include @standard-schema/spec as a dependency (#38)
  • db7de67 docs: recommend strictImportMetaEnv
  • cfa9502 chore: release v2.0.0
  • Additional commits viewable in compare view

Updates @vitejs/plugin-react-swc from 3.8.0 to 4.2.1

Release notes

Sourced from @​vitejs/plugin-react-swc's releases.

[email protected]

Remove generic parameter on Plugin to avoid type error with Rollup 4/Vite 5 and skipLibCheck: false.

I expect very few people to currently use this feature, but if you are extending the React plugin via api object, you can get back the typing of the hook by importing ViteReactPluginApi:

import type { Plugin } from 'vite'
import type { ViteReactPluginApi } from '@vitejs/plugin-react'
export const somePlugin: Plugin = {
name: 'some-plugin',
api: {
reactBabel: (babelConfig) => {
babelConfig.plugins.push('some-babel-plugin')
},
} satisfies ViteReactPluginApi,
}

[email protected]

Fix @vitejs/plugin-react-swc/preamble on build (#962)

[email protected]

Update peer dependency range to target Vite 5

There were no breaking change that impacted this plugin, so any combination of React plugins and Vite core version will work.

Align jsx runtime for optimized dependencies

This will only affect people using internal libraries that contains untranspiled JSX. This change aligns the optimizer with the source code and avoid issues when the published source don't have React in the scope.

Reminder: While being partially supported in Vite, publishing TS & JSX outside of internal libraries is highly discouraged.

[email protected]

Add @vitejs/plugin-react-swc/preamble virtual module for SSR HMR (#890)

SSR applications can now initialize HMR runtime by importing @vitejs/plugin-react-swc/preamble at the top of their client entry instead of manually calling transformIndexHtml. This simplifies SSR setup for applications that don't use the transformIndexHtml API.

Use SWC when useAtYourOwnRisk_mutateSwcOptions is provided (#951)

Previously, this plugin did not use SWC if plugins were not provided even if useAtYourOwnRisk_mutateSwcOptions was provided. This is now fixed.

[email protected]

  • Enable retainLines to get correct line numbers for jsxDev (fix #235)

[email protected]

  • Add @types/babel__cores to dependencies (fix #211)
  • Improve build perf when not using Babel plugins by lazy loading @babel/core #212
  • Better invalidation message when an export is added & fix HMR for export of nullish values #215
  • Include non-dev jsx runtime in optimizeDeps & support HMR for JS files using the non dev runtime #224

... (truncated)

Changelog

Sourced from @​vitejs/plugin-react-swc's changelog.

4.2.1 (2025-11-05)

Fix @vitejs/plugin-react-swc/preamble on build (#962)

4.2.0 (2025-10-24)

Add @vitejs/plugin-react-swc/preamble virtual module for SSR HMR (#890)

SSR applications can now initialize HMR runtime by importing @vitejs/plugin-react-swc/preamble at the top of their client entry instead of manually calling transformIndexHtml. This simplifies SSR setup for applications that don't use the transformIndexHtml API.

Use SWC when useAtYourOwnRisk_mutateSwcOptions is provided (#951)

Previously, this plugin did not use SWC if plugins were not provided even if useAtYourOwnRisk_mutateSwcOptions was provided. This is now fixed.

4.1.0 (2025-09-17)

Set SWC cacheRoot options

This is set to {viteCacheDir}/swc and override the default of .swc.

Perf: simplify refresh wrapper generation (#835)

4.0.1 (2025-08-19)

Set optimizeDeps.rollupOptions.transform.jsx instead of optimizeDeps.rollupOptions.jsx for rolldown-vite (#735)

optimizeDeps.rollupOptions.jsx is going to be deprecated in favor of optimizeDeps.rollupOptions.transform.jsx.

4.0.0 (2025-08-07)

4.0.0-beta.0 (2025-07-28)

Require Node 20.19+, 22.12+

This plugin now requires Node 20.19+ or 22.12+.

3.11.0 (2025-07-18)

Add HMR support for compound components (#518)

HMR now works for compound components like this:

const Root = () => <div>Accordion Root</div>
const Item = () => <div>Accordion Item</div>
export const Accordion = { Root, Item }

Return Plugin[] instead of PluginOption[] (#537)

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​vitejs/plugin-react-swc since your current version.


Updates @vitest/coverage-v8 from 1.6.1 to 4.0.8

Release notes

Sourced from @​vitest/coverage-v8's releases.

v4.0.8

   🐞 Bug Fixes

    View changes on GitHub

v4.0.7

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub

v4.0.6

   🐞 Bug Fixes

... (truncated)

Commits
  • 46bfd09 chore: release v4.0.8
  • da8b93a fix(deps): update all non-major dependencies (#8636)
  • 1f5d9d2 chore: release v4.0.7
  • 2e7b2b8 chore: release v4.0.6
  • e3b7775 fix(coverage): prevent filtering out virtual files before remapping to source...
  • ed9fc71 chore: release v4.0.5
  • 9b75ec5 chore: release v4.0.4
  • ca1766f chore: release v4.0.3
  • 07bc56a chore: release v4.0.2
  • 4a28faa chore: release v4.0.1
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​vitest/coverage-v8 since your current version.


Updates vite from 5.4.14 to 7.2.2

Release notes

Sourced from vite's releases.

v7.2.2

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

v7.2.1

Please refer to CHANGELOG.md for details.

[email protected]

Please refer to CHANGELOG.md for details.

v7.2.0

Please refer to CHANGELOG.md for details.

v7.2.0-beta.1

Please refer to CHANGELOG.md for details.

v7.2.0-beta.0

Please refer to CHANGELOG.md for details.

v7.1.12

Please refer to CHANGELOG.md for details.

v7.1.11

Please refer to CHANGELOG.md for details.

v7.1.10

Please refer to CHANGELOG.md for details.

v7.1.9

Please refer to CHANGELOG.md for details.

v7.1.8

Please refer to CHANGELOG.md for details.

v7.1.7

Please refer to CHANGELOG.md for details.

v7.1.6

Please refer to CHANGELOG.md for details.

v7.1.5

Please refer to CHANGELOG.md for details.

v7.1.4

Please refer to CHANGELOG.md for details.

v7.1.3

Please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from vite's changelog.

7.2.2 (2025-11-07)

Bug Fixes

7.2.1 (2025-11-06)

Bug Fixes

Code Refactoring

  • build: rename indexOfMatchInSlice to findPreloadMarker (#21054) (f83264f)

7.2.0 (2025-11-05)

Bug Fixes

  • css: fallback to sass when sass-embedded platform binary is missing (#21002) (b1fd616)
  • module-runner: make getBuiltins response JSON serializable (#21029) (ad5b3bf)
  • types: add undefined to optional properties for exactOptionalProperties type compatibility (#21040) (2833c55)

Miscellaneous Chores

7.2.0-beta.1 (2025-10-29)

Bug Fixes

  • increase stream reset rate limit for HTTP2 (#21024) (4f44f22)
  • optimizer: externalize virtual modules for html like files (#21001) (e5af352)

Documentation

  • clarify the values are escaped automatically (#21017) (246df13)

Code Refactoring

7.2.0-beta.0 (2025-10-28)

Features

  • add import.meta.resolve support for ESM config (bundle config loader) (#20962) (f86789a)
  • add perEnvironmentWatchChangeDuringDev (#20996) (a5e98e6)
  • add vite client connect events (#20978) (543d87c)
  • build: emit license (#18546) (b42c3fb)
  • dev: support HTTP2 even if proxy feature is used (#20869) (fc21af7)
  • lib: enable minification but keep pure annotations for es output with terser (#20522) (df997d0)
  • optimizer: add rush lockfile support (#20833) (718ca2d)
  • utils: support multiple certificates in resolveServerUrls (#20707) (24513e5)

... (truncated)

Commits
  • 572aaca release: v7.2.2
  • 728c8ee fix: revert "refactor: use fs.cpSync (#21019)" (#21081)
  • a532e68 release: v7.2.1
  • 82d2d6c fix(worker): some worker asset was missing (#21074)
  • f83264f refactor(build): rename indexOfMatchInSlice to findPreloadMarker (#21054)
  • 8293de0 release: v7.2.0
  • 2833c55 fix(types): add undefined to optional properties for exactOptionalProperties ...
  • e3a6a83 chore(deps): update rolldown-related dependencies (#21047)
  • b1fd616 fix(css): fallback to sass when sass-embedded platform binary is missing (#21...
  • ad5b3bf fix(module-runner): make getBuiltins response JSON serializable (#21029)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for vite since your current version.


Updates vite-plugin-checker from 0.7.2 to 0.11.0

Release notes

Sourced from vite-plugin-checker's releases.

[email protected]

   🚨 Breaking Changes

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

[email protected]

   🐞 Bug Fixes

    View changes on GitHub

[email protected]

   🐞 Bug Fixes

    View changes on GitHub

[email protected]

   🐞 Bug Fixes

    View changes on GitHub

[email protected]

No significant changes

    View changes on GitHub

[email protected]

   🐞 Bug Fixes

... (truncated)

Commits
  • 44a86f7 v0.11.0
  • d22d54a chore: remove in-source changelogs
  • baf7152 ci: use trusted publishing
  • bac91cf fix: address merge conflict with strip-ansi
  • 66a10dc perf!: use node built-in instead of strip-ansi (#588)
  • 61408e7 feat(oxlint): add support for oxlint (#578)
  • 5ddc18c fix(deps): update dependency strip-ansi to ^7.1.2 (#587)
  • bfc6118 chore(deps): update dependency @​tsconfig/strictest to ^2.0.6 (#586)
  • fd3443a chore(deps): update dependency vite to v5 [security] (#585)
  • 9158f8f chore(deps): update dependency publint to ^0.3.13 (#584)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for vite-plugin-checker since your current version.


Updates vite-plugin-compression2 from 0.11.0 to 2.3.1

Release notes

Sourced from vite-plugin-compression2's releases.

v2.3.1

  • Fixed where it didn't work with vite manifest plugin.

v2.3.0

  • Add new option artifacts.

v2.2.1

  • Enhanced algorithms option to accept alias strings in array format.
  • Add new option logLevel to control log in stdout.

v2.2.0

  • Add compression algorithm aliases.
  • The correct variable should be passed when using custom filename.

Credits

@​solonovamax

v2.1.0

  • Add zstd support. (Use the built-in zstd of nodejs. Note that you need to ensure your local node version)

v2.0.1

  • Fix build script.

v2.0.0

Major Changes

  • Changed algorithm option to algorithms (array support)
  • Removed compressionOptions in favor of new defineAlgorithm() helper
  • Enhanced API for better developer experience

New Features

  • Support for multiple compression algorithms in a single plugin instance
  • New defineAlgorithm() helper for better type-safety and options control
  • Custom compression algorithm support via function callbacks

Improvements

  • Better TypeScript type definitions
  • Simplified configuration for common use cases
  • Added comprehensive migration guide
  • Added Q&A document for common usage patterns

See the Migration Guide for detailed upgrade instructions.

v1.4.0

Added build log output for compression result.

... (truncated)

Changelog

Sourced from vite-plugin-compression2's changelog.

2.3.1

  • Fixed where it didn't work with vite manifest plugin.

2.3.0

  • Add new option artifacts.

2.2.1

  • Enhanced algorithms option to accept alias strings in array format.
  • Add new option logLevel to control log in stdout.

2.2.0

  • Add compression algorithm aliases.
  • The correct variable should be passed when using custom filename.

Credits

@​solonovamax

2.1.0

  • Add zstd support. (Use the built-in zstd of nodejs. Note that you need to ensure your local node version)

2.0.1

  • Fix build script.

2.0.0

Major Changes

  • Changed algorithm option to algorithms (array support)
  • Removed compressionOptions in favor of new defineAlgorithm() helper
  • Enhanced API for better developer experience

New Features

  • Support for multiple compression algorithms in a single plugin instance
  • New defineAlgorithm() helper for better type-safety and options control
  • Custom compression algorithm support via function callbacks

Improvements

  • Better TypeScript type definitions
  • Simplified configuration for common use cases
  • Added comprehensive migration guide
  • Added Q&A document for common usage patterns

... (truncated)

Commits

Updates vite-plugin-radar from 0.9.6 to 0.10.1

Release notes

Sourced from vite-plugin-radar's releases.

v0.10.1

What's Changed

New Contributors

Full Changelog: stafyniaksacha/vite-plugin-radar@v0.10.0...v0.10.1

v0.10.0

Potential breaking changes

  • disable default export, only named export will work
- import VitePluginRadar from 'vite-plugin-radar'
+ import { VitePluginRadar } from 'vite-plugin-radar'

What's Changed

New Contributors

Full Changelog: stafyniaksacha/vite-plugin-radar@v0.9.6...v0.10.0

Changelog

Sourced from vite-plugin-radar's changelog.

0.10.1 (2025-07-22)

Features

Bug Fixes

  • yandex metrika base link changed to a new one (#40) (ac24b89)

0.10.0 (2025-01-17)

⚠ BREAKING CHANGES

  • disable default export

Features

Commits

Updates vite-plugin-svgr from 4.3.0 to 4.5.0

Release notes

Sourced from vite-plugin-svgr's releases.

v4.5.0

No significant changes

    View changes on GitHub
Commits

Updates vite-tsconfig-paths from 4.3.2 to 5.1.4

Release notes

Sourced from vite-tsconfig-paths's releases.

v5.1.4

  • fix: correctly infer the paths root dir (eea1c17d0fe4ad6e3f8bc324216bc09173e3c778) (#150)

v5.1.3

  • fix: Once an importer is matched, end directory traversal (b0d8ecb9b862412e93f73b172cc0692259ce01b8)
  • feat: Add vite-tsconfig-paths:resolve debug logs (7160d6e52673367a7f4766ca9023ddc1da43e5dd)
  • chore: Ensure debug logs can be enabled in vitest (0dc9a8b9b0ec8657f9d6980ac33d0bc090e278ef)

v5.1.2

  • fix Windows regression introduced in v5.1.1 (#162)

v5.1.1

  • support ${configDir} syntax in include/exclude (#156)

v5.1.0

  • Add skip option for adding additional directories to be skipped when searching for tsconfig.json files (#146)
  • Fix path resolution on Windows when other Vite plugins neglect to normalize the importer path before calling this.resolve in their resolveId hooks (#157)
  • Allow both tsconfig.json and jsconfig.json in the same directory (4124b091607503d44b876bb4edd726667b386660)

v5.0.0

This package is now ESM only in order to align with Vite: https://vitejs.dev/guide/migration#deprecate-cjs-node-api

If your project is using CommonJS, you can rename your Vite config to use the .mjs or .mts extension (depending on whether you use TypeScript or not). If you're not using Vite v5.0.0+, you may want to pin your dependency to v4 of this plugin.

Commits
  • f58afbc 5.1.4
  • ece58bf chore: upgrade typescript
  • 593a611 fix: ensure parseNative result is correctly handled
  • eea1c17 fix: correctly infer the paths root dir
  • 34cb651 test: add case for resolving paths from an extended tsconfig (

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Nov 10, 2025
@changeset-bot
Copy link

changeset-bot bot commented Nov 10, 2025

⚠️ No Changeset found

Latest commit: a419373

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Bumps the vite group with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [@julr/vite-plugin-validate-env](https://github.com/Julien-R44/vite-plugin-validate-env) | `1.3.0` | `2.2.0` |
| [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc) | `3.8.0` | `4.2.1` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `1.6.1` | `4.0.8` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.4.14` | `7.2.2` |
| [vite-plugin-checker](https://github.com/fi3ework/vite-plugin-checker) | `0.7.2` | `0.11.0` |
| [vite-plugin-compression2](https://github.com/nonzzz/vite-plugin-compression) | `0.11.0` | `2.3.1` |
| [vite-plugin-radar](https://github.com/stafyniaksacha/vite-plugin-radar) | `0.9.6` | `0.10.1` |
| [vite-plugin-svgr](https://github.com/pd4d10/vite-plugin-svgr) | `4.3.0` | `4.5.0` |
| [vite-tsconfig-paths](https://github.com/aleclarson/vite-tsconfig-paths) | `4.3.2` | `5.1.4` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `1.6.1` | `4.0.8` |
| [vite-plugin-dts](https://github.com/qmhc/vite-plugin-dts) | `3.9.1` | `4.5.4` |
| [vite-plugin-lib-inject-css](https://github.com/emosheeep/vite-plugin-lib-inject-css) | `1.3.0` | `2.2.2` |
| [@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite) | `8.5.8` | `10.0.6` |


Updates `@julr/vite-plugin-validate-env` from 1.3.0 to 2.2.0
- [Release notes](https://github.com/Julien-R44/vite-plugin-validate-env/releases)
- [Commits](Julien-R44/vite-plugin-validate-env@v1.3.0...v2.2.0)

Updates `@vitejs/plugin-react-swc` from 3.8.0 to 4.2.1
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/v4.2.1/packages/plugin-react-swc)

Updates `@vitest/coverage-v8` from 1.6.1 to 4.0.8
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.8/packages/coverage-v8)

Updates `vite` from 5.4.14 to 7.2.2
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v7.2.2/packages/vite)

Updates `vite-plugin-checker` from 0.7.2 to 0.11.0
- [Release notes](https://github.com/fi3ework/vite-plugin-checker/releases)
- [Commits](https://github.com/fi3ework/vite-plugin-checker/compare/[email protected]@0.11.0)

Updates `vite-plugin-compression2` from 0.11.0 to 2.3.1
- [Release notes](https://github.com/nonzzz/vite-plugin-compression/releases)
- [Changelog](https://github.com/nonzzz/vite-plugin-compression/blob/master/CHANGELOG.md)
- [Commits](nonzzz/vite-plugin-compression@v0.11.0...v2.3.1)

Updates `vite-plugin-radar` from 0.9.6 to 0.10.1
- [Release notes](https://github.com/stafyniaksacha/vite-plugin-radar/releases)
- [Changelog](https://github.com/stafyniaksacha/vite-plugin-radar/blob/main/CHANGELOG.md)
- [Commits](stafyniaksacha/vite-plugin-radar@v0.9.6...v0.10.1)

Updates `vite-plugin-svgr` from 4.3.0 to 4.5.0
- [Release notes](https://github.com/pd4d10/vite-plugin-svgr/releases)
- [Commits](pd4d10/vite-plugin-svgr@v4.3.0...v4.5.0)

Updates `vite-tsconfig-paths` from 4.3.2 to 5.1.4
- [Release notes](https://github.com/aleclarson/vite-tsconfig-paths/releases)
- [Commits](aleclarson/vite-tsconfig-paths@v4.3.2...v5.1.4)

Updates `vitest` from 1.6.1 to 4.0.8
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.8/packages/vitest)

Updates `vite-plugin-dts` from 3.9.1 to 4.5.4
- [Release notes](https://github.com/qmhc/vite-plugin-dts/releases)
- [Changelog](https://github.com/qmhc/unplugin-dts/blob/v4.5.4/CHANGELOG.md)
- [Commits](qmhc/unplugin-dts@v3.9.1...v4.5.4)

Updates `vite-plugin-lib-inject-css` from 1.3.0 to 2.2.2
- [Release notes](https://github.com/emosheeep/vite-plugin-lib-inject-css/releases)
- [Changelog](https://github.com/emosheeep/vite-plugin-lib-inject-css/blob/master/CHANGELOG.md)
- [Commits](https://github.com/emosheeep/vite-plugin-lib-inject-css/commits/[email protected])

Updates `@storybook/react-vite` from 8.5.8 to 10.0.6
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.0.6/code/frameworks/react-vite)

---
updated-dependencies:
- dependency-name: "@julr/vite-plugin-validate-env"
  dependency-version: 2.2.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
- dependency-name: "@vitejs/plugin-react-swc"
  dependency-version: 4.2.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.0.8
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
- dependency-name: vite
  dependency-version: 7.2.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
- dependency-name: vite-plugin-checker
  dependency-version: 0.11.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: vite
- dependency-name: vite-plugin-compression2
  dependency-version: 2.3.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
- dependency-name: vite-plugin-radar
  dependency-version: 0.10.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: vite
- dependency-name: vite-plugin-svgr
  dependency-version: 4.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: vite
- dependency-name: vite-tsconfig-paths
  dependency-version: 5.1.4
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
- dependency-name: vitest
  dependency-version: 4.0.8
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
- dependency-name: vite-plugin-dts
  dependency-version: 4.5.4
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
- dependency-name: vite-plugin-lib-inject-css
  dependency-version: 2.2.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
- dependency-name: "@storybook/react-vite"
  dependency-version: 10.0.6
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: vite
...

Signed-off-by: dependabot[bot] <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant