Commit defdfc2
authored
chore(deps): bump esbuild and vite (#152)
Bumps [esbuild](https://github.com/evanw/esbuild) and
[vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite). These
dependencies needed to be updated together.
Updates `esbuild` from 0.21.5 to 0.25.5
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/evanw/esbuild/releases">esbuild's
releases</a>.</em></p>
<blockquote>
<h2>v0.25.5</h2>
<ul>
<li>
<p>Fix a regression with <code>browser</code> in
<code>package.json</code> (<a
href="https://redirect.github.com/evanw/esbuild/issues/4187">#4187</a>)</p>
<p>The fix to <a
href="https://redirect.github.com/evanw/esbuild/issues/4144">#4144</a>
in version 0.25.3 introduced a regression that caused
<code>browser</code> overrides specified in <code>package.json</code> to
fail to override relative path names that end in a trailing slash. That
behavior change affected the <code>axios@0.30.0</code> package. This
regression has been fixed, and now has test coverage.</p>
</li>
<li>
<p>Add support for certain keywords as TypeScript tuple labels (<a
href="https://redirect.github.com/evanw/esbuild/issues/4192">#4192</a>)</p>
<p>Previously esbuild could incorrectly fail to parse certain keywords
as TypeScript tuple labels that are parsed by the official TypeScript
compiler if they were followed by a <code>?</code> modifier. These
labels included <code>function</code>, <code>import</code>,
<code>infer</code>, <code>new</code>, <code>readonly</code>, and
<code>typeof</code>. With this release, these keywords will now be
parsed correctly. Here's an example of some affected code:</p>
<pre lang="ts"><code>type Foo = [
value: any,
readonly?: boolean, // This is now parsed correctly
]
</code></pre>
</li>
<li>
<p>Add CSS prefixes for the <code>stretch</code> sizing value (<a
href="https://redirect.github.com/evanw/esbuild/issues/4184">#4184</a>)</p>
<p>This release adds support for prefixing CSS declarations such as
<code>div { width: stretch }</code>. That CSS is now transformed into
this depending on what the <code>--target=</code> setting includes:</p>
<pre lang="css"><code>div {
width: -webkit-fill-available;
width: -moz-available;
width: stretch;
}
</code></pre>
</li>
</ul>
<h2>v0.25.4</h2>
<ul>
<li>
<p>Add simple support for CORS to esbuild's development server (<a
href="https://redirect.github.com/evanw/esbuild/issues/4125">#4125</a>)</p>
<p>Starting with version 0.25.0, esbuild's development server is no
longer configured to serve cross-origin requests. This was a deliberate
change to prevent any website you visit from accessing your running
esbuild development server. However, this change prevented (by design)
certain use cases such as "debugging in production" by having
your production website load code from <code>localhost</code> where the
esbuild development server is running.</p>
<p>To enable this use case, esbuild is adding a feature to allow <a
href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/CORS">Cross-Origin
Resource Sharing</a> (a.k.a. CORS) for <a
href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/CORS#simple_requests">simple
requests</a>. Specifically, passing your origin to the new
<code>cors</code> option will now set the
<code>Access-Control-Allow-Origin</code> response header when the
request has a matching <code>Origin</code> header. Note that this
currently only works for requests that don't send a preflight
<code>OPTIONS</code> request, as esbuild's development server doesn't
currently support <code>OPTIONS</code> requests.</p>
<p>Some examples:</p>
<ul>
<li>
<p><strong>CLI:</strong></p>
<pre><code>esbuild --servedir=. --cors-origin=https://example.com
</code></pre>
</li>
<li>
<p><strong>JS:</strong></p>
<pre lang="js"><code>const ctx = await esbuild.context({})
await ctx.serve({
servedir: '.',
cors: {
</code></pre>
</li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/evanw/esbuild/blob/main/CHANGELOG-2024.md">esbuild's
changelog</a>.</em></p>
<blockquote>
<h1>Changelog: 2024</h1>
<p>This changelog documents all esbuild versions published in the year
2024 (versions 0.19.12 through 0.24.2).</p>
<h2>0.24.2</h2>
<ul>
<li>
<p>Fix regression with <code>--define</code> and
<code>import.meta</code> (<a
href="https://redirect.github.com/evanw/esbuild/issues/4010">#4010</a>,
<a
href="https://redirect.github.com/evanw/esbuild/issues/4012">#4012</a>,
<a
href="https://redirect.github.com/evanw/esbuild/pull/4013">#4013</a>)</p>
<p>The previous change in version 0.24.1 to use a more expression-like
parser for <code>define</code> values to allow quoted property names
introduced a regression that removed the ability to use
<code>--define:import.meta=...</code>. Even though <code>import</code>
is normally a keyword that can't be used as an identifier, ES modules
special-case the <code>import.meta</code> expression to behave like an
identifier anyway. This change fixes the regression.</p>
<p>This fix was contributed by <a
href="https://github.com/sapphi-red"><code>@sapphi-red</code></a>.</p>
</li>
</ul>
<h2>0.24.1</h2>
<ul>
<li>
<p>Allow <code>es2024</code> as a target in <code>tsconfig.json</code>
(<a
href="https://redirect.github.com/evanw/esbuild/issues/4004">#4004</a>)</p>
<p>TypeScript recently <a
href="https://devblogs.microsoft.com/typescript/announcing-typescript-5-7/#support-for---target-es2024-and---lib-es2024">added
<code>es2024</code></a> as a compilation target, so esbuild now supports
this in the <code>target</code> field of <code>tsconfig.json</code>
files, such as in the following configuration file:</p>
<pre lang="json"><code>{
"compilerOptions": {
"target": "ES2024"
}
}
</code></pre>
<p>As a reminder, the only thing that esbuild uses this field for is
determining whether or not to use legacy TypeScript behavior for class
fields. You can read more in <a
href="https://esbuild.github.io/content-types/#tsconfig-json">the
documentation</a>.</p>
<p>This fix was contributed by <a
href="https://github.com/billyjanitsch"><code>@billyjanitsch</code></a>.</p>
</li>
<li>
<p>Allow automatic semicolon insertion after
<code>get</code>/<code>set</code></p>
<p>This change fixes a grammar bug in the parser that incorrectly
treated the following code as a syntax error:</p>
<pre lang="ts"><code>class Foo {
get
*x() {}
set
*y() {}
}
</code></pre>
<p>The above code will be considered valid starting with this release.
This change to esbuild follows a <a
href="https://redirect.github.com/microsoft/TypeScript/pull/60225">similar
change to TypeScript</a> which will allow this syntax starting with
TypeScript 5.7.</p>
</li>
<li>
<p>Allow quoted property names in <code>--define</code> and
<code>--pure</code> (<a
href="https://redirect.github.com/evanw/esbuild/issues/4008">#4008</a>)</p>
<p>The <code>define</code> and <code>pure</code> API options now accept
identifier expressions containing quoted property names. Previously all
identifiers in the identifier expression had to be bare identifiers.
This change now makes <code>--define</code> and <code>--pure</code>
consistent with <code>--global-name</code>, which already supported
quoted property names. For example, the following is now possible:</p>
<pre lang="js"><code></code></pre>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/evanw/esbuild/commit/ea453bf687c8e5cf3c5f11aae372c5ca33be0c98"><code>ea453bf</code></a>
publish 0.25.5 to npm</li>
<li><a
href="https://github.com/evanw/esbuild/commit/223ddc6a5f1b4721573765eb5b8571888f64313e"><code>223ddc6</code></a>
fix <a
href="https://redirect.github.com/evanw/esbuild/issues/4187">#4187</a>:
browser <code>package.json</code> regression</li>
<li><a
href="https://github.com/evanw/esbuild/commit/b2c825150b7aa471bcc9b4302ba990557596c35f"><code>b2c8251</code></a>
fix <a
href="https://redirect.github.com/evanw/esbuild/issues/4192">#4192</a>:
typescript tuple label parser edge case</li>
<li><a
href="https://github.com/evanw/esbuild/commit/28cf2f3e7f4b5b2e629171c0e340fbb406ce68f8"><code>28cf2f3</code></a>
fix <a
href="https://redirect.github.com/evanw/esbuild/issues/4184">#4184</a>:
css prefixes for <code>stretch</code></li>
<li><a
href="https://github.com/evanw/esbuild/commit/bee1b09cd565fd122c798f57c9617111f7c999ca"><code>bee1b09</code></a>
fix comment indents</li>
<li><a
href="https://github.com/evanw/esbuild/commit/9ddfe5fa15a5e782f8118459a1b8aa3f9f9e87c2"><code>9ddfe5f</code></a>
run <code>make update-compat-table</code></li>
<li><a
href="https://github.com/evanw/esbuild/commit/c339f34484463f597b77c8450c393bfdd26c629e"><code>c339f34</code></a>
fix a misplaced comment</li>
<li><a
href="https://github.com/evanw/esbuild/commit/218d29e9da018d60cf87b8fb496bb8167936ff54"><code>218d29e</code></a>
publish 0.25.4 to npm</li>
<li><a
href="https://github.com/evanw/esbuild/commit/e66cd0bf6daebff56527540c433c69e49e9dcb13"><code>e66cd0b</code></a>
dev server: simple support for CORS requests (<a
href="https://redirect.github.com/evanw/esbuild/issues/4171">#4171</a>)</li>
<li><a
href="https://github.com/evanw/esbuild/commit/8bf33685941e857c2b0f10c4d719a895f9d1ceea"><code>8bf3368</code></a>
js api: validate some options as arrays of strings</li>
<li>Additional commits viewable in <a
href="https://github.com/evanw/esbuild/compare/v0.21.5...v0.25.5">compare
view</a></li>
</ul>
</details>
<br />
Updates `vite` from 5.4.19 to 7.0.4
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/vitejs/vite/releases">vite's
releases</a>.</em></p>
<blockquote>
<h2>v7.0.4</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/v7.0.4/packages/vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>v7.0.3</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/v7.0.3/packages/vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>create-vite@7.0.3</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/create-vite@7.0.3/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>v7.0.2</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/v7.0.2/packages/vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>create-vite@7.0.2</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/create-vite@7.0.2/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>v7.0.1</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/v7.0.1/packages/vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>create-vite@7.0.1</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/create-vite@7.0.1/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>create-vite@7.0.0</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/create-vite@7.0.0/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>plugin-legacy@7.0.0</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/plugin-legacy@7.0.0/packages/plugin-legacy/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>v7.0.0</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/v7.0.0/packages/vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>v7.0.0-beta.2</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/v7.0.0-beta.2/packages/vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>v7.0.0-beta.1</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/v7.0.0-beta.1/packages/vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>plugin-legacy@7.0.0-beta.1</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/plugin-legacy@7.0.0-beta.1/packages/plugin-legacy/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>plugin-legacy@7.0.0-beta.0</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/plugin-legacy@7.0.0-beta.0/packages/plugin-legacy/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>v7.0.0-beta.0</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/v7.0.0-beta.0/packages/vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>create-vite@6.5.0</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/create-vite@6.5.0/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<h2>create-vite@6.4.1</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/create-vite@6.4.1/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md">vite's
changelog</a>.</em></p>
<blockquote>
<h2><!-- raw HTML omitted --><a
href="https://github.com/vitejs/vite/compare/v7.0.3...v7.0.4">7.0.4</a>
(2025-07-10)<!-- raw HTML omitted --></h2>
<h3>Bug Fixes</h3>
<ul>
<li>allow resolving bare specifiers to relative paths for entries (<a
href="https://redirect.github.com/vitejs/vite/issues/20379">#20379</a>)
(<a
href="https://github.com/vitejs/vite/commit/324669c2d84966a822b1b2c134c9830a90bed271">324669c</a>)</li>
</ul>
<h3>Build System</h3>
<ul>
<li>remove <code>@oxc-project/runtime</code> devDep (<a
href="https://redirect.github.com/vitejs/vite/issues/20389">#20389</a>)
(<a
href="https://github.com/vitejs/vite/commit/5e29602f6fe4bf28f6e7c869a214dee6957f855c">5e29602</a>)</li>
</ul>
<h2><!-- raw HTML omitted --><a
href="https://github.com/vitejs/vite/compare/v7.0.2...v7.0.3">7.0.3</a>
(2025-07-08)<!-- raw HTML omitted --></h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>client:</strong> protect against window being defined but
addEv undefined (<a
href="https://redirect.github.com/vitejs/vite/issues/20359">#20359</a>)
(<a
href="https://github.com/vitejs/vite/commit/31d1467cf0da1e1dca623e6df0d345b30fae0c3d">31d1467</a>)</li>
<li><strong>define:</strong> replace optional values (<a
href="https://redirect.github.com/vitejs/vite/issues/20338">#20338</a>)
(<a
href="https://github.com/vitejs/vite/commit/9465ae1378b456e08659a22286bee6bce8edeedc">9465ae1</a>)</li>
<li><strong>deps:</strong> update all non-major dependencies (<a
href="https://redirect.github.com/vitejs/vite/issues/20366">#20366</a>)
(<a
href="https://github.com/vitejs/vite/commit/43ac73da27b3907c701e95e6a7d28fde659729ec">43ac73d</a>)</li>
</ul>
<h3>Miscellaneous Chores</h3>
<ul>
<li><strong>deps:</strong> update dependency dotenv to v17 (<a
href="https://redirect.github.com/vitejs/vite/issues/20325">#20325</a>)
(<a
href="https://github.com/vitejs/vite/commit/45040d48076302eeb101f8d07bbcd04758fde8a4">45040d4</a>)</li>
<li><strong>deps:</strong> update dependency rolldown to ^1.0.0-beta.24
(<a
href="https://redirect.github.com/vitejs/vite/issues/20365">#20365</a>)
(<a
href="https://github.com/vitejs/vite/commit/5ab25e73a2ea2a2e2c0469350288a183dfb57030">5ab25e7</a>)</li>
<li>use <code>n/prefer-node-protocol</code> rule (<a
href="https://redirect.github.com/vitejs/vite/issues/20368">#20368</a>)
(<a
href="https://github.com/vitejs/vite/commit/38bb268cde15541321f36016e77d61eecb707298">38bb268</a>)</li>
</ul>
<h3>Code Refactoring</h3>
<ul>
<li>minor changes to reduce diff between normal Vite and rolldown-vite
(<a
href="https://redirect.github.com/vitejs/vite/issues/20354">#20354</a>)
(<a
href="https://github.com/vitejs/vite/commit/2e8050e4cd8835673baf07375b7db35128144222">2e8050e</a>)</li>
</ul>
<h2><!-- raw HTML omitted --><a
href="https://github.com/vitejs/vite/compare/v7.0.1...v7.0.2">7.0.2</a>
(2025-07-04)<!-- raw HTML omitted --></h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>css:</strong> resolve relative paths in sass, revert <a
href="https://redirect.github.com/vitejs/vite/issues/20300">#20300</a>
(<a
href="https://redirect.github.com/vitejs/vite/issues/20349">#20349</a>)
(<a
href="https://github.com/vitejs/vite/commit/db8bd412a8b783fe8e9f82d1a822b0534abbf5a3">db8bd41</a>)</li>
</ul>
<h2><!-- raw HTML omitted --><a
href="https://github.com/vitejs/vite/compare/v7.0.0...v7.0.1">7.0.1</a>
(2025-07-03)<!-- raw HTML omitted --></h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>css:</strong> skip resolving resolved paths in sass (<a
href="https://redirect.github.com/vitejs/vite/issues/20300">#20300</a>)
(<a
href="https://github.com/vitejs/vite/commit/ac528a44c384fefb6f10c3f531df93b5ac39324c">ac528a4</a>)</li>
<li><strong>deps:</strong> update all non-major dependencies (<a
href="https://redirect.github.com/vitejs/vite/issues/20324">#20324</a>)
(<a
href="https://github.com/vitejs/vite/commit/3e81af38a80c7617aba6bf3300d8b4267570f9cf">3e81af3</a>)</li>
<li><strong>types:</strong> add a global interface for Worker (<a
href="https://redirect.github.com/vitejs/vite/issues/20243">#20243</a>)
(<a
href="https://github.com/vitejs/vite/commit/37bdfc18f4c5bed053a38c5d717df33036acdd62">37bdfc1</a>)</li>
</ul>
<h3>Miscellaneous Chores</h3>
<ul>
<li><strong>deps:</strong> update rolldown-related dependencies (<a
href="https://redirect.github.com/vitejs/vite/issues/20323">#20323</a>)
(<a
href="https://github.com/vitejs/vite/commit/30d2f1b38c72387ffdca3ee4746730959a020b59">30d2f1b</a>)</li>
<li>fix typos and grammatical errors across documentation and comments
(<a
href="https://redirect.github.com/vitejs/vite/issues/20337">#20337</a>)
(<a
href="https://github.com/vitejs/vite/commit/c1c951dcc32ec9f133b03ebbceddd749fc14f1e9">c1c951d</a>)</li>
<li>group commits by category in changelog (<a
href="https://redirect.github.com/vitejs/vite/issues/20310">#20310</a>)
(<a
href="https://github.com/vitejs/vite/commit/41e83f62b1adb65f5af4c1ec006de1c845437edc">41e83f6</a>)</li>
<li>rearrange 7.0 changelog (<a
href="https://redirect.github.com/vitejs/vite/issues/20280">#20280</a>)
(<a
href="https://github.com/vitejs/vite/commit/eafd28ac88d5908cbc3e0a047ed7a12094386436">eafd28a</a>)</li>
</ul>
<h2><a
href="https://github.com/vitejs/vite/compare/v7.0.0-beta.2...v7.0.0">7.0.0</a>
(2025-06-24)</h2>
<p><img
src="https://github.com/vitejs/vite/blob/main/docs/public/og-image-announcing-vite7.png"
alt="Vite 7 is out!" /></p>
<p>Today, we're excited to announce the release of the next Vite
major:</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/vitejs/vite/commit/8a654337767296497d4fda6b8a03f76a817beb6d"><code>8a65433</code></a>
release: v7.0.4</li>
<li><a
href="https://github.com/vitejs/vite/commit/324669c2d84966a822b1b2c134c9830a90bed271"><code>324669c</code></a>
fix: allow resolving bare specifiers to relative paths for entries (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20379">#20379</a>)</li>
<li><a
href="https://github.com/vitejs/vite/commit/5e29602f6fe4bf28f6e7c869a214dee6957f855c"><code>5e29602</code></a>
build: remove <code>@oxc-project/runtime</code> devDep (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20389">#20389</a>)</li>
<li><a
href="https://github.com/vitejs/vite/commit/f562df85a3a20ed52b84581945f1809b22cec068"><code>f562df8</code></a>
release: v7.0.3</li>
<li><a
href="https://github.com/vitejs/vite/commit/38bb268cde15541321f36016e77d61eecb707298"><code>38bb268</code></a>
chore: use <code>n/prefer-node-protocol</code> rule (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20368">#20368</a>)</li>
<li><a
href="https://github.com/vitejs/vite/commit/45040d48076302eeb101f8d07bbcd04758fde8a4"><code>45040d4</code></a>
chore(deps): update dependency dotenv to v17 (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20325">#20325</a>)</li>
<li><a
href="https://github.com/vitejs/vite/commit/9465ae1378b456e08659a22286bee6bce8edeedc"><code>9465ae1</code></a>
fix(define): replace optional values (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20338">#20338</a>)</li>
<li><a
href="https://github.com/vitejs/vite/commit/43ac73da27b3907c701e95e6a7d28fde659729ec"><code>43ac73d</code></a>
fix(deps): update all non-major dependencies (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20366">#20366</a>)</li>
<li><a
href="https://github.com/vitejs/vite/commit/31d1467cf0da1e1dca623e6df0d345b30fae0c3d"><code>31d1467</code></a>
fix(client): protect against window being defined but addEv undefined
(<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20359">#20359</a>)</li>
<li><a
href="https://github.com/vitejs/vite/commit/5ab25e73a2ea2a2e2c0469350288a183dfb57030"><code>5ab25e7</code></a>
chore(deps): update dependency rolldown to ^1.0.0-beta.24 (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/20365">#20365</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/vitejs/vite/commits/v7.0.4/packages/vite">compare
view</a></li>
</ul>
</details>
<br />
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-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will 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 version` will 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 dependency` will 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](https://github.com/jargonsdev/jargons.dev/network/alerts).
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>1 parent 8fbc496 commit defdfc2
1 file changed
Lines changed: 58 additions & 418 deletions
0 commit comments