build(deps): bump esbuild, vite, rollup-plugin-esbuild-minify and vite-plugin-stylelint
Bumps esbuild to 0.25.12 and updates ancestor dependencies esbuild, vite, rollup-plugin-esbuild-minify and vite-plugin-stylelint. These dependencies need to be updated together.
Updates esbuild from 0.24.2 to 0.25.12
Release notes
Sourced from esbuild's releases.
v0.25.12
Fix a minification regression with CSS media queries (#4315)
The previous release introduced support for parsing media queries which unintentionally introduced a regression with the removal of duplicate media rules during minification. Specifically the grammar for
@media <media-type> and <media-condition-without-or> { ... }was missing an equality check for the<media-condition-without-or>part, so rules with different suffix clauses in this position would incorrectly compare equal and be deduplicated. This release fixes the regression.Update the list of known JavaScript globals (#4310)
This release updates esbuild's internal list of known JavaScript globals. These are globals that are known to not have side-effects when the property is accessed. For example, accessing the global
Arrayproperty is considered to be side-effect free but accessing the globalscrollYproperty can trigger a layout, which is a side-effect. This is used by esbuild's tree-shaking to safely remove unused code that is known to be side-effect free. This update adds the following global properties:From ES2017:
AtomicsSharedArrayBufferFrom ES2020:
BigInt64ArrayBigUint64ArrayFrom ES2021:
FinalizationRegistryWeakRefFrom ES2025:
Float16ArrayIteratorNote that this does not indicate that constructing any of these objects is side-effect free, just that accessing the identifier is side-effect free. For example, this now allows esbuild to tree-shake classes that extend from
Iterator:// This can now be tree-shaken by esbuild: class ExampleIterator extends Iterator {}Add support for the new
@view-transitionCSS rule (#4313)With this release, esbuild now has improved support for pretty-printing and minifying the new
@view-transitionrule (which esbuild was previously unaware of):/* Original code */ @view-transition { navigation: auto; types: check; }/* Old output */
@view-transition{ navigation: auto; types: check; }/* New output */
@view-transition{
navigation: auto;
types: check;
... (truncated)
Changelog
Sourced from esbuild's changelog.
Changelog: 2024
This changelog documents all esbuild versions published in the year 2024 (versions 0.19.12 through 0.24.2).
Commits
208f539publish 0.25.12 to npm5f03afdupdate release notes6b2ee78minify: remove css rules containing empty:is()f361debadd some additional known static methods07aa646automatically mark "RegExp.escape()" calls as pure9039c46simplify some call expression checks188944dadd some additional known static methodsd3c67f9fix #4310: addIteratorand other known globals4a51f0bfix: escape dev server breadcrumb hrefs properly (#4316)26b29edfix #4315:@mediadeduplication bug edge case- Additional commits viewable in compare view
Updates vite from 5.4.21 to 6.4.1
Release notes
Sourced from vite's releases.
[email protected]
Please refer to CHANGELOG.md for details.
v6.4.1
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
v6.4.0
Please refer to CHANGELOG.md for details.
v6.3.7
Please refer to CHANGELOG.md for details.
v6.3.6
Please refer to CHANGELOG.md for details.
v6.3.5
Please refer to CHANGELOG.md for details.
v6.3.4
Please refer to CHANGELOG.md for details.
v6.3.3
Please refer to CHANGELOG.md for details.
v6.3.2
Please refer to CHANGELOG.md for details.
[email protected]
Please refer to CHANGELOG.md for details.
v6.3.1
Please refer to CHANGELOG.md for details.
v6.3.0
Please refer to CHANGELOG.md for details.
v6.3.0-beta.2
Please refer to CHANGELOG.md for details.
v6.3.0-beta.1
Please refer to CHANGELOG.md for details.
v6.3.0-beta.0
Please refer to CHANGELOG.md for details.
v6.2.7
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
7.2.0 (2025-11-05)
Bug Fixes
- css: fallback to sass when sass-embedded platform binary is missing (#21002) (b1fd616)
- module-runner: make
getBuiltinsresponse 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
Code Refactoring
7.2.0-beta.0 (2025-10-28)
Features
- add
import.meta.resolvesupport 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
a7349efrelease: v6.3.1a152b7cfix: backward compat for internal plugintransformcalls (#19878)35c7f35fix: avoid usingPromise.allSettledin preload function (#19805)5fdcfe7release: v6.3.0d4ee5e8fix(hmr): avoid infinite loop happening withhot.invalidatein circular dep...5003434fix(preview): use host url to open browser (#19836)bf9728erelease: v6.3.0-beta.2380c10efix(hmr): run HMR handler sequentially (#19793)8bed1defix: addWatchFile doesn't work if base is specified (fixes #19792) (#19794)0a0c50arefactor: simplify pluginFilter implementation (#19828)- Additional commits viewable in compare view
Updates rollup-plugin-esbuild-minify from 1.2.0 to 1.3.0
Release notes
Sourced from rollup-plugin-esbuild-minify's releases.
1.3.0
1.3.0 (2025-04-26)
Features
- Upgrade dependencies (09ba5dd)
Changelog
Sourced from rollup-plugin-esbuild-minify's changelog.
1.3.0 (2025-04-26)
Features
- Upgrade dependencies (09ba5dd)
Commits
dc3e3f81.3.0 [skip ci]09ba5ddfeat: Upgrade dependencies- See full diff in compare view
Updates vite-plugin-stylelint from 5.3.1 to 6.0.2
Release notes
Sourced from vite-plugin-stylelint's releases.
v6.0.2
🐞 Bug Fixes
View changes on GitHub
v6.0.1
🐞 Bug Fixes
View changes on GitHub
v6.0.0
🚨 Breaking Changes
🐞 Bug Fixes
- StylelintInstance may not be initialized when calling lintFiles in the worker - by
@ModyQyW(2caf0)- Remove extra parsing - by
@ModyQyW(68906)- Terminate worker if possible - by
@ModyQyW(acd43)- Fix wrong colorize - by
@ModyQyW(55eb4)- Correct id & filePath params - by
@ModyQyW(9c789)View changes on GitHub
v6.0.0-beta.2
🐞 Bug Fixes
View changes on GitHub
v6.0.0-beta.1
No significant changes
View changes on GitHub
v6.0.0-beta.0
🚨 Breaking Changes
🐞 Bug Fixes
... (truncated)
Changelog
Sourced from vite-plugin-stylelint's changelog.
6.0.2 (2025-07-09)
Bug Fixes
6.0.1 (2025-07-04)
Bug Fixes
- support vite 7 (52fb9c3) - by @
6.0.0 (2024-11-26)
Note: Version bump only for package vite-plugin-stylelint
6.0.0-beta.2 (2024-11-08)
Bug Fixes
- correct id & filePath params (9c78976) - by @
6.0.0-beta.1 (2024-10-19)
Note: Version bump only for package vite-plugin-stylelint
6.0.0-beta.0 (2024-10-14)
⚠ BREAKING CHANGES
- remove chokidar, introduce another way to handle imported style files
Features
Bug Fixes
Commits
2ba2b70chore: release v6.0.26110eeffix: fix exportsd75eb57chore: release v6.0.152fb9c3fix: support vite 761e0ae3chore: update deps and config0dd490abuild: switch to tsdowna10c6ffchore: release v6.0.0065224fdocs: update1dbb3d8chore: update deps6c6dd54chore: release v6.0.0-beta.2- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the Security Alerts page.