build(deps-dev): bump the frontend-deps group with 5 updates (#559)

Bumps the frontend-deps group with 5 updates:

| Package | From | To |
| --- | --- | --- |
|
[@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8)
| `2.0.5` | `2.1.1` |
| [postcss](https://github.com/postcss/postcss) | `8.4.45` | `8.4.47` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.4.10`
| `3.4.11` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) |
`5.4.3` | `5.4.6` |
|
[vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest)
| `2.0.5` | `2.1.1` |

Updates `@vitest/coverage-v8` from 2.0.5 to 2.1.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/vitest-dev/vitest/releases"><code>@​vitest/coverage-v8</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v2.1.1</h2>
<h3>   🐞 Bug Fixes</h3>
<ul>
<li><strong>browser</strong>:
<ul>
<li>Make example test callbacks async  -  by <a
href="https://github.com/aqandrew"><code>@​aqandrew</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/6484">vitest-dev/vitest#6484</a>
<a href="https://github.com/vitest-dev/vitest/commit/16aa76c2"><!-- raw
HTML omitted -->(16aa7)<!-- raw HTML omitted --></a></li>
<li>Optimize vitest-browser-vue correctly  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6490">vitest-dev/vitest#6490</a>
<a href="https://github.com/vitest-dev/vitest/commit/5cbb0bba"><!-- raw
HTML omitted -->(5cbb0)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>workspace</strong>:
<ul>
<li>Resolve glob pattern once to avoid name collision  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6489">vitest-dev/vitest#6489</a>
<a href="https://github.com/vitest-dev/vitest/commit/36b5aceb"><!-- raw
HTML omitted -->(36b5a)<!-- raw HTML omitted --></a></li>
</ul>
</li>
</ul>
<h5>    <a
href="https://github.com/vitest-dev/vitest/compare/v2.1.0...v2.1.1">View
changes on GitHub</a></h5>
<h2>v2.1.0</h2>
<p>This release makes another big change to the Browser Mode by
introducing <a
href="https://vitest.dev/guide/browser/locators.html">locators
API</a>:</p>
<pre lang="ts"><code>test('renders blog posts', async () =&gt; {
  const screen = page.render(&lt;Blog /&gt;)
<p>await expect.element(screen.getByRole('heading', { name: 'Blog'
})).toBeInTheDocument()</p>
<p>const [firstPost] = screen.getByRole('listitem').all()</p>
<p>await firstPost.getByRole('button', { name: 'Delete' }).click()</p>
<p>expect(screen.getByRole('listitem').all()).toHaveLength(3)
})
</code></pre></p>
<p>You can use either <a
href="https://github.com/vitest-dev/vitest-browser-vue">vitest-browser-vue</a>,
<a
href="https://github.com/vitest-dev/vitest-browser-svelte">vitest-browser-svelte
</a> or <a
href="https://github.com/vitest-dev/vitest-browser-react">vitest-browser-react</a>
to render components and make assertions using locators. Locators are
also available on the <code>page</code> object from
<code>@vitest/browser/context</code>.</p>
<h3>Potential Breaking Change</h3>
<ul>
<li><strong>workspace</strong>:
<ul>
<li>Correctly resolve workspace globs and file paths  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6316">vitest-dev/vitest#6316</a>
<a href="https://github.com/vitest-dev/vitest/commit/afdcb8f2"><!-- raw
HTML omitted -->(afdcb)<!-- raw HTML omitted --></a></li>
<li>This changes how the custom glob pattern in the workspace config is
treated. <em>Any</em> file matching the glob is considered a Vitest
config file. Any folder matching the glob pattern is treated as a
workspace project and is subject to the regular config resolution
(single <code>vitest.config.ts</code> or <code>vite.config.ts</code>
inside the folder)</li>
<li>For example, <code>projects/*</code> will match anything inside the
<code>projects</code> folder. If it's a folder, we try to find the
config inside that folder (if there is none, it is still treated as a
project with the default config). If it's a file, it will be treated as
a Vitest config. <code>projects/**/*</code> previously would assume that
you only wanted to have folders as projects, but now it will match
<em>every single file</em> inside<code>projects</code>.</li>
<li>This change doesn't affect non-glob usage.</li>
</ul>
</li>
</ul>
<h3>   🚀 Features</h3>
<ul>
<li><strong>api</strong>:
<ul>
<li>Make spec into a class instead of a tuple  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6355">vitest-dev/vitest#6355</a>
<a href="https://github.com/vitest-dev/vitest/commit/874a121e"><!-- raw
HTML omitted -->(874a1)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>browser</strong>:
<ul>
<li>Move page.config to server.config, add more docs  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6252">vitest-dev/vitest#6252</a>
<a href="https://github.com/vitest-dev/vitest/commit/af2b813c"><!-- raw
HTML omitted -->(af2b8)<!-- raw HTML omitted --></a></li>
<li>Make iframe scalable, improve documentation  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6257">vitest-dev/vitest#6257</a>
<a href="https://github.com/vitest-dev/vitest/commit/74ca11a4"><!-- raw
HTML omitted -->(74ca1)<!-- raw HTML omitted --></a></li>
<li>Introduce built-in locators  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6084">vitest-dev/vitest#6084</a>
<a href="https://github.com/vitest-dev/vitest/commit/3347f83e"><!-- raw
HTML omitted -->(3347f)<!-- raw HTML omitted --></a></li>
<li>Support v8 coverage  -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/6273">vitest-dev/vitest#6273</a>
<a href="https://github.com/vitest-dev/vitest/commit/34199bdf"><!-- raw
HTML omitted -->(34199)<!-- raw HTML omitted --></a></li>
<li>Support <code>userEvent.upload</code> in playwright provider  -  by
<a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a>
in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/6442">vitest-dev/vitest#6442</a>
<a href="https://github.com/vitest-dev/vitest/commit/cf148645"><!-- raw
HTML omitted -->(cf148)<!-- raw HTML omitted --></a></li>
<li>Support <code>--inspect</code>  -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/6433">vitest-dev/vitest#6433</a>
<a href="https://github.com/vitest-dev/vitest/commit/0499a315"><!-- raw
HTML omitted -->(0499a)<!-- raw HTML omitted --></a></li>
<li>Support <code>--inspect-brk</code>  -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/6434">vitest-dev/vitest#6434</a>
<a href="https://github.com/vitest-dev/vitest/commit/7ab0f4a8"><!-- raw
HTML omitted -->(7ab0f)<!-- raw HTML omitted --></a></li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="699055eb93"><code>699055e</code></a>
chore: release v2.1.1</li>
<li><a
href="9f1fd182fd"><code>9f1fd18</code></a>
chore: release v2.1.0</li>
<li><a
href="b2be23e4c9"><code>b2be23e</code></a>
chore: release v2.1.0-beta.7</li>
<li><a
href="8ac7011170"><code>8ac7011</code></a>
chore: release v2.1.0-beta.6</li>
<li><a
href="da52d23fd1"><code>da52d23</code></a>
fix(coverage): use project specific <code>vitenode</code> for uncovered
files (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8/issues/6044">#6044</a>)</li>
<li><a
href="5932a7f988"><code>5932a7f</code></a>
feat(coverage): add <code>--exclude-after-remap</code> (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8/issues/6309">#6309</a>)</li>
<li><a
href="34199bdf9a"><code>34199bd</code></a>
feat(browser): support v8 coverage (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8/issues/6273">#6273</a>)</li>
<li><a
href="72056b5063"><code>72056b5</code></a>
chore: release v2.1.0-beta.5</li>
<li><a
href="91dea8c146"><code>91dea8c</code></a>
fix(coverage): v8 to warn instead of crash when conversion fails (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8/issues/6318">#6318</a>)</li>
<li><a
href="1f6cb59f13"><code>1f6cb59</code></a>
fix(coverage): v8 to support source maps with multiple sources (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8/issues/6120">#6120</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/vitest-dev/vitest/commits/v2.1.1/packages/coverage-v8">compare
view</a></li>
</ul>
</details>
<br />

Updates `postcss` from 8.4.45 to 8.4.47
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/postcss/postcss/releases">postcss's
releases</a>.</em></p>
<blockquote>
<h2>8.4.47</h2>
<ul>
<li>Removed debug code.</li>
</ul>
<h2>8.4.46</h2>
<ul>
<li>Fixed <code>Cannot read properties of undefined (reading
'before')</code>.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/postcss/postcss/blob/main/CHANGELOG.md">postcss's
changelog</a>.</em></p>
<blockquote>
<h2>8.4.47</h2>
<ul>
<li>Removed debug code.</li>
</ul>
<h2>8.4.46</h2>
<ul>
<li>Fixed <code>Cannot read properties of undefined (reading
'before')</code>.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="5e6fd1302d"><code>5e6fd13</code></a>
Release 8.4.47 version</li>
<li><a
href="714bc10258"><code>714bc10</code></a>
Typo</li>
<li><a
href="439d20e651"><code>439d20e</code></a>
Release 8.4.46 version</li>
<li><a
href="b93582f68e"><code>b93582f</code></a>
Update dependencies</li>
<li><a
href="c51e46767d"><code>c51e467</code></a>
Fix error on inserting node without raws in some cases</li>
<li><a
href="829ae47d6b"><code>829ae47</code></a>
Update dependencies</li>
<li><a
href="5aaaec2214"><code>5aaaec2</code></a>
Update remaining workflow jobs to use latest version of actions (<a
href="https://redirect.github.com/postcss/postcss/issues/1968">#1968</a>)</li>
<li>See full diff in <a
href="https://github.com/postcss/postcss/compare/8.4.45...8.4.47">compare
view</a></li>
</ul>
</details>
<br />

Updates `tailwindcss` from 3.4.10 to 3.4.11
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tailwindlabs/tailwindcss/releases">tailwindcss's
releases</a>.</em></p>
<blockquote>
<h2>v3.4.11</h2>
<h3>Fixed</h3>
<ul>
<li>Allow <code>anchor-size(…)</code> in arbitrary values (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/14393">#14393</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/tailwindlabs/tailwindcss/blob/v3.4.11/CHANGELOG.md">tailwindcss's
changelog</a>.</em></p>
<blockquote>
<h2>[3.4.11] - 2024-09-11</h2>
<h3>Fixed</h3>
<ul>
<li>Allow <code>anchor-size(…)</code> in arbitrary values (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/pull/14393">#14393</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="818d10ab84"><code>818d10a</code></a>
3.4.11</li>
<li><a
href="8dd9246a87"><code>8dd9246</code></a>
update changelog</li>
<li><a
href="6d9ae82ba3"><code>6d9ae82</code></a>
Allow <code>anchor-size(…)</code> in arbitrary values (<a
href="https://redirect.github.com/tailwindlabs/tailwindcss/issues/14393">#14393</a>)</li>
<li>See full diff in <a
href="https://github.com/tailwindlabs/tailwindcss/compare/v3.4.10...v3.4.11">compare
view</a></li>
</ul>
</details>
<br />

Updates `vite` from 5.4.3 to 5.4.6
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/vitejs/vite/blob/v5.4.6/packages/vite/CHANGELOG.md">vite's
changelog</a>.</em></p>
<blockquote>
<h2><!-- raw HTML omitted -->5.4.6 (2024-09-16)<!-- raw HTML omitted
--></h2>
<ul>
<li>fix: avoid DOM Clobbering gadget in
<code>getRelativeUrlFromDocument</code> (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18115">#18115</a>)
(<a
href="179b17773c">179b177</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/18115">#18115</a></li>
<li>fix: fs raw query (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18112">#18112</a>)
(<a
href="6820bb3b9a">6820bb3</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/18112">#18112</a></li>
</ul>
<h2><!-- raw HTML omitted -->5.4.5 (2024-09-13)<!-- raw HTML omitted
--></h2>
<ul>
<li>fix(preload): backport <a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18098">#18098</a>,
throw error preloading module as well (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18099">#18099</a>)
(<a
href="faa2405e5d">faa2405</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/18098">#18098</a>
<a
href="https://redirect.github.com/vitejs/vite/issues/18099">#18099</a></li>
</ul>
<h2><!-- raw HTML omitted -->5.4.4 (2024-09-11)<!-- raw HTML omitted
--></h2>
<ul>
<li>fix: backport <a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17997">#17997</a>,
ensure req.url matches moduleByEtag URL to avoid incorrect 304 (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18078">#18078</a>)
(<a
href="74a79c53b2">74a79c5</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17997">#17997</a>
<a
href="https://redirect.github.com/vitejs/vite/issues/18078">#18078</a></li>
<li>fix: backport <a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18063">#18063</a>,
allow scanning exports from <code>script module</code> in svelte (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18077">#18077</a>)
(<a
href="d90ba40474">d90ba40</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/18063">#18063</a>
<a
href="https://redirect.github.com/vitejs/vite/issues/18077">#18077</a></li>
<li>fix(preload): backport <a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18046">#18046</a>,
allow ignoring dep errors (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18076">#18076</a>)
(<a
href="8760293d68">8760293</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/18046">#18046</a>
<a
href="https://redirect.github.com/vitejs/vite/issues/18076">#18076</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="f9691767ad"><code>f969176</code></a>
release: v5.4.6</li>
<li><a
href="179b17773c"><code>179b177</code></a>
fix: avoid DOM Clobbering gadget in
<code>getRelativeUrlFromDocument</code> (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18115">#18115</a>)</li>
<li><a
href="6820bb3b9a"><code>6820bb3</code></a>
fix: fs raw query (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18112">#18112</a>)</li>
<li><a
href="37881e7198"><code>37881e7</code></a>
release: v5.4.5</li>
<li><a
href="faa2405e5d"><code>faa2405</code></a>
fix(preload): backport <a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18098">#18098</a>,
throw error preloading module as well (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18099">#18099</a>)</li>
<li><a
href="54c55dbffc"><code>54c55db</code></a>
release: v5.4.4</li>
<li><a
href="74a79c53b2"><code>74a79c5</code></a>
fix: backport <a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17997">#17997</a>,
ensure req.url matches moduleByEtag URL to avoid incorr...</li>
<li><a
href="d90ba40474"><code>d90ba40</code></a>
fix: backport <a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18063">#18063</a>,
allow scanning exports from <code>script module</code> in svelte
(...</li>
<li><a
href="8760293d68"><code>8760293</code></a>
fix(preload): backport <a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18046">#18046</a>,
allow ignoring dep errors (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/18076">#18076</a>)</li>
<li>See full diff in <a
href="https://github.com/vitejs/vite/commits/v5.4.6/packages/vite">compare
view</a></li>
</ul>
</details>
<br />

Updates `vitest` from 2.0.5 to 2.1.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/vitest-dev/vitest/releases">vitest's
releases</a>.</em></p>
<blockquote>
<h2>v2.1.1</h2>
<h3>   🐞 Bug Fixes</h3>
<ul>
<li><strong>browser</strong>:
<ul>
<li>Make example test callbacks async  -  by <a
href="https://github.com/aqandrew"><code>@​aqandrew</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/6484">vitest-dev/vitest#6484</a>
<a href="https://github.com/vitest-dev/vitest/commit/16aa76c2"><!-- raw
HTML omitted -->(16aa7)<!-- raw HTML omitted --></a></li>
<li>Optimize vitest-browser-vue correctly  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6490">vitest-dev/vitest#6490</a>
<a href="https://github.com/vitest-dev/vitest/commit/5cbb0bba"><!-- raw
HTML omitted -->(5cbb0)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>workspace</strong>:
<ul>
<li>Resolve glob pattern once to avoid name collision  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6489">vitest-dev/vitest#6489</a>
<a href="https://github.com/vitest-dev/vitest/commit/36b5aceb"><!-- raw
HTML omitted -->(36b5a)<!-- raw HTML omitted --></a></li>
</ul>
</li>
</ul>
<h5>    <a
href="https://github.com/vitest-dev/vitest/compare/v2.1.0...v2.1.1">View
changes on GitHub</a></h5>
<h2>v2.1.0</h2>
<p>This release makes another big change to the Browser Mode by
introducing <a
href="https://vitest.dev/guide/browser/locators.html">locators
API</a>:</p>
<pre lang="ts"><code>test('renders blog posts', async () =&gt; {
  const screen = page.render(&lt;Blog /&gt;)
<p>await expect.element(screen.getByRole('heading', { name: 'Blog'
})).toBeInTheDocument()</p>
<p>const [firstPost] = screen.getByRole('listitem').all()</p>
<p>await firstPost.getByRole('button', { name: 'Delete' }).click()</p>
<p>expect(screen.getByRole('listitem').all()).toHaveLength(3)
})
</code></pre></p>
<p>You can use either <a
href="https://github.com/vitest-dev/vitest-browser-vue">vitest-browser-vue</a>,
<a
href="https://github.com/vitest-dev/vitest-browser-svelte">vitest-browser-svelte
</a> or <a
href="https://github.com/vitest-dev/vitest-browser-react">vitest-browser-react</a>
to render components and make assertions using locators. Locators are
also available on the <code>page</code> object from
<code>@vitest/browser/context</code>.</p>
<h3>Potential Breaking Change</h3>
<ul>
<li><strong>workspace</strong>:
<ul>
<li>Correctly resolve workspace globs and file paths  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6316">vitest-dev/vitest#6316</a>
<a href="https://github.com/vitest-dev/vitest/commit/afdcb8f2"><!-- raw
HTML omitted -->(afdcb)<!-- raw HTML omitted --></a></li>
<li>This changes how the custom glob pattern in the workspace config is
treated. <em>Any</em> file matching the glob is considered a Vitest
config file. Any folder matching the glob pattern is treated as a
workspace project and is subject to the regular config resolution
(single <code>vitest.config.ts</code> or <code>vite.config.ts</code>
inside the folder)</li>
<li>For example, <code>projects/*</code> will match anything inside the
<code>projects</code> folder. If it's a folder, we try to find the
config inside that folder (if there is none, it is still treated as a
project with the default config). If it's a file, it will be treated as
a Vitest config. <code>projects/**/*</code> previously would assume that
you only wanted to have folders as projects, but now it will match
<em>every single file</em> inside<code>projects</code>.</li>
<li>This change doesn't affect non-glob usage.</li>
</ul>
</li>
</ul>
<h3>   🚀 Features</h3>
<ul>
<li><strong>api</strong>:
<ul>
<li>Make spec into a class instead of a tuple  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6355">vitest-dev/vitest#6355</a>
<a href="https://github.com/vitest-dev/vitest/commit/874a121e"><!-- raw
HTML omitted -->(874a1)<!-- raw HTML omitted --></a></li>
</ul>
</li>
<li><strong>browser</strong>:
<ul>
<li>Move page.config to server.config, add more docs  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6252">vitest-dev/vitest#6252</a>
<a href="https://github.com/vitest-dev/vitest/commit/af2b813c"><!-- raw
HTML omitted -->(af2b8)<!-- raw HTML omitted --></a></li>
<li>Make iframe scalable, improve documentation  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6257">vitest-dev/vitest#6257</a>
<a href="https://github.com/vitest-dev/vitest/commit/74ca11a4"><!-- raw
HTML omitted -->(74ca1)<!-- raw HTML omitted --></a></li>
<li>Introduce built-in locators  -  by <a
href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a> in
<a
href="https://redirect.github.com/vitest-dev/vitest/issues/6084">vitest-dev/vitest#6084</a>
<a href="https://github.com/vitest-dev/vitest/commit/3347f83e"><!-- raw
HTML omitted -->(3347f)<!-- raw HTML omitted --></a></li>
<li>Support v8 coverage  -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/6273">vitest-dev/vitest#6273</a>
<a href="https://github.com/vitest-dev/vitest/commit/34199bdf"><!-- raw
HTML omitted -->(34199)<!-- raw HTML omitted --></a></li>
<li>Support <code>userEvent.upload</code> in playwright provider  -  by
<a href="https://github.com/sheremet-va"><code>@​sheremet-va</code></a>
in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/6442">vitest-dev/vitest#6442</a>
<a href="https://github.com/vitest-dev/vitest/commit/cf148645"><!-- raw
HTML omitted -->(cf148)<!-- raw HTML omitted --></a></li>
<li>Support <code>--inspect</code>  -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/6433">vitest-dev/vitest#6433</a>
<a href="https://github.com/vitest-dev/vitest/commit/0499a315"><!-- raw
HTML omitted -->(0499a)<!-- raw HTML omitted --></a></li>
<li>Support <code>--inspect-brk</code>  -  by <a
href="https://github.com/AriPerkkio"><code>@​AriPerkkio</code></a> in <a
href="https://redirect.github.com/vitest-dev/vitest/issues/6434">vitest-dev/vitest#6434</a>
<a href="https://github.com/vitest-dev/vitest/commit/7ab0f4a8"><!-- raw
HTML omitted -->(7ab0f)<!-- raw HTML omitted --></a></li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="699055eb93"><code>699055e</code></a>
chore: release v2.1.1</li>
<li><a
href="36b5aceb9e"><code>36b5ace</code></a>
fix(workspace): resolve glob pattern once to avoid name collision (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/6489">#6489</a>)</li>
<li><a
href="16aa76c261"><code>16aa76c</code></a>
fix(browser): make example test callbacks async (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/6484">#6484</a>)</li>
<li><a
href="9f1fd182fd"><code>9f1fd18</code></a>
chore: release v2.1.0</li>
<li><a
href="94a186ec91"><code>94a186e</code></a>
fix(ui): render project name consistently (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/6329">#6329</a>)</li>
<li><a
href="ac698b1c8d"><code>ac698b1</code></a>
fix: <code>expect.getState().testPath</code> always returns correct path
(<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/6472">#6472</a>)</li>
<li><a
href="b2be23e4c9"><code>b2be23e</code></a>
chore: release v2.1.0-beta.7</li>
<li><a
href="0b4472267d"><code>0b44722</code></a>
fix: ignore importer when resolving Vitest (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/6469">#6469</a>)</li>
<li><a
href="97773e22bf"><code>97773e2</code></a>
chore: fix edge case in license files bundling (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/6460">#6460</a>)</li>
<li><a
href="7ab0f4a8ff"><code>7ab0f4a</code></a>
feat(browser): support <code>--inspect-brk</code> (<a
href="https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest/issues/6434">#6434</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/vitest-dev/vitest/commits/v2.1.1/packages/vitest">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 <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2024-09-16 23:51:30 -04:00 committed by GitHub
parent 9f8e2681b8
commit 4cc323bca0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 108 additions and 143 deletions

View file

@ -32,7 +32,7 @@
"@tauri-apps/cli": "^1.6.2",
"@testing-library/svelte": "^5.2.1",
"@tsconfig/svelte": "^5.0.4",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/coverage-v8": "^2.1.1",
"ansi-to-span": "^0.0.1",
"autoprefixer": "^10.4.20",
"classnames": "^2.5.1",
@ -41,18 +41,18 @@
"flowbite": "^2.5.1",
"flowbite-svelte": "0.46.16",
"jsdom": "^25.0.0",
"postcss": "^8.4.45",
"postcss": "^8.4.47",
"postcss-load-config": "^6.0.1",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"svelte": "^4.2.19",
"svelte-i18n": "^4.0.0",
"svelte-preprocess": "^6.0.2",
"tailwindcss": "^3.4.10",
"tailwindcss": "^3.4.11",
"typescript": "^5.6.2",
"unplugin-icons": "^0.19.3",
"vite": "^5.4.3",
"vitest": "^2.0.5"
"vite": "^5.4.6",
"vitest": "^2.1.1"
},
"dependencies": {
"@tauri-apps/api": "^1.6.0",

241
yarn.lock
View file

@ -476,6 +476,11 @@
resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz"
integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
"@jridgewell/sourcemap-codec@^1.5.0":
version "1.5.0"
resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz#3188bcb273a414b0d215fd22a58540b989b9409a"
integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==
"@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.23", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.9":
version "0.3.25"
resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0"
@ -892,72 +897,80 @@
resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.8.tgz#8268a8c57a3e4abd25c165ecd36237db7948a55e"
integrity sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==
"@vitest/coverage-v8@^2.0.5":
version "2.0.5"
resolved "https://registry.yarnpkg.com/@vitest/coverage-v8/-/coverage-v8-2.0.5.tgz#411961ce4fd1177a32b4dd74ab576ed3b859155e"
integrity sha512-qeFcySCg5FLO2bHHSa0tAZAOnAUbp4L6/A5JDuj9+bt53JREl8hpLjLHEWF0e/gWc8INVpJaqA7+Ene2rclpZg==
"@vitest/coverage-v8@^2.1.1":
version "2.1.1"
resolved "https://registry.yarnpkg.com/@vitest/coverage-v8/-/coverage-v8-2.1.1.tgz#a1f58cafe7d4306ec751c1054b58f1b60327693a"
integrity sha512-md/A7A3c42oTT8JUHSqjP5uKTWJejzUW4jalpvs+rZ27gsURsMU8DEb+8Jf8C6Kj2gwfSHJqobDNBuoqlm0cFw==
dependencies:
"@ampproject/remapping" "^2.3.0"
"@bcoe/v8-coverage" "^0.2.3"
debug "^4.3.5"
debug "^4.3.6"
istanbul-lib-coverage "^3.2.2"
istanbul-lib-report "^3.0.1"
istanbul-lib-source-maps "^5.0.6"
istanbul-reports "^3.1.7"
magic-string "^0.30.10"
magic-string "^0.30.11"
magicast "^0.3.4"
std-env "^3.7.0"
test-exclude "^7.0.1"
tinyrainbow "^1.2.0"
"@vitest/expect@2.0.5":
version "2.0.5"
resolved "https://registry.yarnpkg.com/@vitest/expect/-/expect-2.0.5.tgz#f3745a6a2c18acbea4d39f5935e913f40d26fa86"
integrity sha512-yHZtwuP7JZivj65Gxoi8upUN2OzHTi3zVfjwdpu2WrvCZPLwsJ2Ey5ILIPccoW23dd/zQBlJ4/dhi7DWNyXCpA==
"@vitest/expect@2.1.1":
version "2.1.1"
resolved "https://registry.yarnpkg.com/@vitest/expect/-/expect-2.1.1.tgz#907137a86246c5328929d796d741c4e95d1ee19d"
integrity sha512-YeueunS0HiHiQxk+KEOnq/QMzlUuOzbU1Go+PgAsHvvv3tUkJPm9xWt+6ITNTlzsMXUjmgm5T+U7KBPK2qQV6w==
dependencies:
"@vitest/spy" "2.0.5"
"@vitest/utils" "2.0.5"
"@vitest/spy" "2.1.1"
"@vitest/utils" "2.1.1"
chai "^5.1.1"
tinyrainbow "^1.2.0"
"@vitest/pretty-format@2.0.5", "@vitest/pretty-format@^2.0.5":
version "2.0.5"
resolved "https://registry.yarnpkg.com/@vitest/pretty-format/-/pretty-format-2.0.5.tgz#91d2e6d3a7235c742e1a6cc50e7786e2f2979b1e"
integrity sha512-h8k+1oWHfwTkyTkb9egzwNMfJAEx4veaPSnMeKbVSjp4euqGSbQlm5+6VHwTr7u4FJslVVsUG5nopCaAYdOmSQ==
"@vitest/mocker@2.1.1":
version "2.1.1"
resolved "https://registry.yarnpkg.com/@vitest/mocker/-/mocker-2.1.1.tgz#3e37c80ac267318d4aa03c5073a017d148dc8e67"
integrity sha512-LNN5VwOEdJqCmJ/2XJBywB11DLlkbY0ooDJW3uRX5cZyYCrc4PI/ePX0iQhE3BiEGiQmK4GE7Q/PqCkkaiPnrA==
dependencies:
"@vitest/spy" "^2.1.0-beta.1"
estree-walker "^3.0.3"
magic-string "^0.30.11"
"@vitest/pretty-format@2.1.1", "@vitest/pretty-format@^2.1.1":
version "2.1.1"
resolved "https://registry.yarnpkg.com/@vitest/pretty-format/-/pretty-format-2.1.1.tgz#fea25dd4e88c3c1329fbccd1d16b1d607eb40067"
integrity sha512-SjxPFOtuINDUW8/UkElJYQSFtnWX7tMksSGW0vfjxMneFqxVr8YJ979QpMbDW7g+BIiq88RAGDjf7en6rvLPPQ==
dependencies:
tinyrainbow "^1.2.0"
"@vitest/runner@2.0.5":
version "2.0.5"
resolved "https://registry.yarnpkg.com/@vitest/runner/-/runner-2.0.5.tgz#89197e712bb93513537d6876995a4843392b2a84"
integrity sha512-TfRfZa6Bkk9ky4tW0z20WKXFEwwvWhRY+84CnSEtq4+3ZvDlJyY32oNTJtM7AW9ihW90tX/1Q78cb6FjoAs+ig==
"@vitest/runner@2.1.1":
version "2.1.1"
resolved "https://registry.yarnpkg.com/@vitest/runner/-/runner-2.1.1.tgz#f3b1fbc3c109fc44e2cceecc881344453f275559"
integrity sha512-uTPuY6PWOYitIkLPidaY5L3t0JJITdGTSwBtwMjKzo5O6RCOEncz9PUN+0pDidX8kTHYjO0EwUIvhlGpnGpxmA==
dependencies:
"@vitest/utils" "2.0.5"
"@vitest/utils" "2.1.1"
pathe "^1.1.2"
"@vitest/snapshot@2.0.5":
version "2.0.5"
resolved "https://registry.yarnpkg.com/@vitest/snapshot/-/snapshot-2.0.5.tgz#a2346bc5013b73c44670c277c430e0334690a162"
integrity sha512-SgCPUeDFLaM0mIUHfaArq8fD2WbaXG/zVXjRupthYfYGzc8ztbFbu6dUNOblBG7XLMR1kEhS/DNnfCZ2IhdDew==
"@vitest/snapshot@2.1.1":
version "2.1.1"
resolved "https://registry.yarnpkg.com/@vitest/snapshot/-/snapshot-2.1.1.tgz#38ef23104e90231fea5540754a19d8468afbba66"
integrity sha512-BnSku1WFy7r4mm96ha2FzN99AZJgpZOWrAhtQfoxjUU5YMRpq1zmHRq7a5K9/NjqonebO7iVDla+VvZS8BOWMw==
dependencies:
"@vitest/pretty-format" "2.0.5"
magic-string "^0.30.10"
"@vitest/pretty-format" "2.1.1"
magic-string "^0.30.11"
pathe "^1.1.2"
"@vitest/spy@2.0.5":
version "2.0.5"
resolved "https://registry.yarnpkg.com/@vitest/spy/-/spy-2.0.5.tgz#590fc07df84a78b8e9dd976ec2090920084a2b9f"
integrity sha512-c/jdthAhvJdpfVuaexSrnawxZz6pywlTPe84LUB2m/4t3rl2fTo9NFGBG4oWgaD+FTgDDV8hJ/nibT7IfH3JfA==
"@vitest/spy@2.1.1", "@vitest/spy@^2.1.0-beta.1":
version "2.1.1"
resolved "https://registry.yarnpkg.com/@vitest/spy/-/spy-2.1.1.tgz#20891f7421a994256ea0d739ed72f05532c78488"
integrity sha512-ZM39BnZ9t/xZ/nF4UwRH5il0Sw93QnZXd9NAZGRpIgj0yvVwPpLd702s/Cx955rGaMlyBQkZJ2Ir7qyY48VZ+g==
dependencies:
tinyspy "^3.0.0"
"@vitest/utils@2.0.5":
version "2.0.5"
resolved "https://registry.yarnpkg.com/@vitest/utils/-/utils-2.0.5.tgz#6f8307a4b6bc6ceb9270007f73c67c915944e926"
integrity sha512-d8HKbqIcya+GR67mkZbrzhS5kKhtp8dQLcmRZLGTscGVg7yImT82cIrhtn2L8+VujWcy6KZweApgNmPsTAO/UQ==
"@vitest/utils@2.1.1":
version "2.1.1"
resolved "https://registry.yarnpkg.com/@vitest/utils/-/utils-2.1.1.tgz#284d016449ecb4f8704d198d049fde8360cc136e"
integrity sha512-Y6Q9TsI+qJ2CC0ZKj6VBb+T8UPz593N113nnUykqwANqhgf3QkZeHFlusgKLTqrnVHbj/XDKZcDHol+dxVT+rQ==
dependencies:
"@vitest/pretty-format" "2.0.5"
estree-walker "^3.0.3"
"@vitest/pretty-format" "2.1.1"
loupe "^3.1.1"
tinyrainbow "^1.2.0"
@ -1615,21 +1628,6 @@ execa@^5.1.1:
signal-exit "^3.0.3"
strip-final-newline "^2.0.0"
execa@^8.0.1:
version "8.0.1"
resolved "https://registry.yarnpkg.com/execa/-/execa-8.0.1.tgz#51f6a5943b580f963c3ca9c6321796db8cc39b8c"
integrity sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==
dependencies:
cross-spawn "^7.0.3"
get-stream "^8.0.1"
human-signals "^5.0.0"
is-stream "^3.0.0"
merge-stream "^2.0.0"
npm-run-path "^5.1.0"
onetime "^6.0.0"
signal-exit "^4.1.0"
strip-final-newline "^3.0.0"
execa@^9.3.1:
version "9.3.1"
resolved "https://registry.yarnpkg.com/execa/-/execa-9.3.1.tgz#09c86ab4dc2ef3de6d34f6568f4bad76ded4fded"
@ -1805,11 +1803,6 @@ get-stream@^6.0.0:
resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz"
integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==
get-stream@^8.0.1:
version "8.0.1"
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-8.0.1.tgz#def9dfd71742cd7754a7761ed43749a27d02eca2"
integrity sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==
get-stream@^9.0.0:
version "9.0.1"
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-9.0.1.tgz#95157d21df8eb90d1647102b63039b1df60ebd27"
@ -1998,11 +1991,6 @@ human-signals@^2.1.0:
resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0"
integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==
human-signals@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-5.0.0.tgz#42665a284f9ae0dade3ba41ebc37eb4b852f3a28"
integrity sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==
human-signals@^8.0.0:
version "8.0.0"
resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-8.0.0.tgz#2d3d63481c7c2319f0373428b01ffe30da6df852"
@ -2113,11 +2101,6 @@ is-stream@^2.0.0:
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077"
integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==
is-stream@^3.0.0:
version "3.0.0"
resolved "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz"
integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==
is-stream@^4.0.1:
version "4.0.1"
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-4.0.1.tgz#375cf891e16d2e4baec250b85926cffc14720d9b"
@ -2305,12 +2288,12 @@ lz-string@^1.5.0:
resolved "https://registry.yarnpkg.com/lz-string/-/lz-string-1.5.0.tgz#c1ab50f77887b712621201ba9fd4e3a6ed099941"
integrity sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==
magic-string@^0.30.10, magic-string@^0.30.4:
version "0.30.10"
resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.10.tgz#123d9c41a0cb5640c892b041d4cfb3bd0aa4b39e"
integrity sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==
magic-string@^0.30.10, magic-string@^0.30.11, magic-string@^0.30.4:
version "0.30.11"
resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.11.tgz#301a6f93b3e8c2cb13ac1a7a673492c0dfd12954"
integrity sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==
dependencies:
"@jridgewell/sourcemap-codec" "^1.4.15"
"@jridgewell/sourcemap-codec" "^1.5.0"
magicast@^0.3.4:
version "0.3.4"
@ -2387,11 +2370,6 @@ mimic-fn@^2.1.0:
resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz"
integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
mimic-fn@^4.0.0:
version "4.0.0"
resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz"
integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==
mini-svg-data-uri@^1.4.3:
version "1.4.4"
resolved "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz"
@ -2534,7 +2512,7 @@ npm-run-path@^4.0.1:
dependencies:
path-key "^3.0.0"
npm-run-path@^5.1.0, npm-run-path@^5.2.0:
npm-run-path@^5.2.0:
version "5.3.0"
resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-5.3.0.tgz#e23353d0ebb9317f174e93417e4a4d82d0249e9f"
integrity sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==
@ -2575,13 +2553,6 @@ onetime@^5.1.2:
dependencies:
mimic-fn "^2.1.0"
onetime@^6.0.0:
version "6.0.0"
resolved "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz"
integrity sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==
dependencies:
mimic-fn "^4.0.0"
opener@^1.5.1:
version "1.5.2"
resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598"
@ -2691,10 +2662,10 @@ periscopic@^3.1.0:
estree-walker "^3.0.0"
is-reference "^3.0.0"
picocolors@^1.0.0, picocolors@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.1.tgz#a8ad579b571952f0e5d25892de5445bcfe25aaa1"
integrity sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==
picocolors@^1.0.0, picocolors@^1.0.1, picocolors@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.0.tgz#5358b76a78cde483ba5cef6a9dc9671440b27d59"
integrity sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==
picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1:
version "2.3.1"
@ -2789,14 +2760,14 @@ postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0:
resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz"
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
postcss@^8.4.23, postcss@^8.4.4, postcss@^8.4.43, postcss@^8.4.45:
version "8.4.45"
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.45.tgz#538d13d89a16ef71edbf75d895284ae06b79e603"
integrity sha512-7KTLTdzdZZYscUc65XmjFiB73vBhBfbPztCYdUNvlaso9PrzjzcmjqBPR0lNGkcVlcO4BjiO5rK/qNz+XAen1Q==
postcss@^8.4.23, postcss@^8.4.4, postcss@^8.4.43, postcss@^8.4.47:
version "8.4.47"
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.47.tgz#5bf6c9a010f3e724c503bf03ef7947dcb0fea365"
integrity sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==
dependencies:
nanoid "^3.3.7"
picocolors "^1.0.1"
source-map-js "^1.2.0"
picocolors "^1.1.0"
source-map-js "^1.2.1"
prettier-plugin-svelte@^3.2.6:
version "3.2.6"
@ -3034,10 +3005,10 @@ signal-exit@^4.0.1, signal-exit@^4.1.0:
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04"
integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==
source-map-js@^1.0.1, source-map-js@^1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af"
integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==
source-map-js@^1.0.1, source-map-js@^1.2.0, source-map-js@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46"
integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==
stackback@0.0.2:
version "0.0.2"
@ -3102,11 +3073,6 @@ strip-final-newline@^2.0.0:
resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad"
integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==
strip-final-newline@^3.0.0:
version "3.0.0"
resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz"
integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==
strip-final-newline@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-4.0.0.tgz#35a369ec2ac43df356e3edd5dcebb6429aa1fa5c"
@ -3267,10 +3233,10 @@ tailwind-merge@^2.5.2:
resolved "https://registry.yarnpkg.com/tailwind-merge/-/tailwind-merge-2.5.2.tgz#000f05a703058f9f9f3829c644235f81d4c08a1f"
integrity sha512-kjEBm+pvD+6eAwzJL2Bi+02/9LFLal1Gs61+QB7HvTfQQ0aXwC5LGT8PEt1gS0CWKktKe6ysPTAy3cBC5MeiIg==
tailwindcss@^3.4.10:
version "3.4.10"
resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.4.10.tgz#70442d9aeb78758d1f911af29af8255ecdb8ffef"
integrity sha512-KWZkVPm7yJRhdu4SRSl9d4AK2wM3a50UsvgHZO7xY77NQr2V+fIrEuoDGQcbvswWvFGbS2f6e+jC/6WJm1Dl0w==
tailwindcss@^3.4.11:
version "3.4.11"
resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.4.11.tgz#4d6df41acc05a1d0291b1319490db8df375ab709"
integrity sha512-qhEuBcLemjSJk5ajccN9xJFtM/h0AVCPaA6C92jNP+M2J8kX+eMJHI7R2HFKUvvAsMpcfLILMCFYSeDwpMmlUg==
dependencies:
"@alloc/quick-lru" "^5.2.0"
arg "^5.0.2"
@ -3334,10 +3300,10 @@ tiny-glob@^0.2.9:
globalyzer "0.1.0"
globrex "^0.1.2"
tinybench@^2.8.0:
version "2.8.0"
resolved "https://registry.yarnpkg.com/tinybench/-/tinybench-2.8.0.tgz#30e19ae3a27508ee18273ffed9ac7018949acd7b"
integrity sha512-1/eK7zUnIklz4JUUlL+658n58XO2hHLQfSk1Zf2LKieUjxidN16eKFEoDEfjHc3ohofSSqK3X5yO6VGb6iW8Lw==
tinybench@^2.9.0:
version "2.9.0"
resolved "https://registry.yarnpkg.com/tinybench/-/tinybench-2.9.0.tgz#103c9f8ba6d7237a47ab6dd1dcff77251863426b"
integrity sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==
tinyexec@^0.3.0:
version "0.3.0"
@ -3499,21 +3465,20 @@ util-deprecate@^1.0.2:
resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"
integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==
vite-node@2.0.5:
version "2.0.5"
resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-2.0.5.tgz#36d909188fc6e3aba3da5fc095b3637d0d18e27b"
integrity sha512-LdsW4pxj0Ot69FAoXZ1yTnA9bjGohr2yNBU7QKRxpz8ITSkhuDl6h3zS/tvgz4qrNjeRnvrWeXQ8ZF7Um4W00Q==
vite-node@2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-2.1.1.tgz#7d46f623c04dfed6df34e7127711508a3386fa1c"
integrity sha512-N/mGckI1suG/5wQI35XeR9rsMsPqKXzq1CdUndzVstBj/HvyxxGctwnK6WX43NGt5L3Z5tcRf83g4TITKJhPrA==
dependencies:
cac "^6.7.14"
debug "^4.3.5"
debug "^4.3.6"
pathe "^1.1.2"
tinyrainbow "^1.2.0"
vite "^5.0.0"
vite@^5.0.0, vite@^5.4.3:
version "5.4.3"
resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.3.tgz#771c470e808cb6732f204e1ee96c2ed65b97a0eb"
integrity sha512-IH+nl64eq9lJjFqU+/yrRnrHPVTlgy42/+IzbOdaFDVlyLgI/wDlf+FCobXLX1cT0X5+7LMyH1mIy2xJdLfo8Q==
vite@^5.0.0, vite@^5.4.6:
version "5.4.6"
resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.6.tgz#85a93a1228a7fb5a723ca1743e337a2588ed008f"
integrity sha512-IeL5f8OO5nylsgzd9tq4qD2QqI0k2CQLGrWD0rCN0EQJZpBK5vJAx0I+GDkMOXxQX/OfFHMuLIx6ddAxGX/k+Q==
dependencies:
esbuild "^0.21.3"
postcss "^8.4.43"
@ -3526,29 +3491,29 @@ vitefu@^0.2.5:
resolved "https://registry.yarnpkg.com/vitefu/-/vitefu-0.2.5.tgz#c1b93c377fbdd3e5ddd69840ea3aa70b40d90969"
integrity sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==
vitest@^2.0.5:
version "2.0.5"
resolved "https://registry.yarnpkg.com/vitest/-/vitest-2.0.5.tgz#2f15a532704a7181528e399cc5b754c7f335fd62"
integrity sha512-8GUxONfauuIdeSl5f9GTgVEpg5BTOlplET4WEDaeY2QBiN8wSm68vxN/tb5z405OwppfoCavnwXafiaYBC/xOA==
vitest@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/vitest/-/vitest-2.1.1.tgz#24a6f6f5d894509f10685b82de008c507faacbb1"
integrity sha512-97We7/VC0e9X5zBVkvt7SGQMGrRtn3KtySFQG5fpaMlS+l62eeXRQO633AYhSTC3z7IMebnPPNjGXVGNRFlxBA==
dependencies:
"@ampproject/remapping" "^2.3.0"
"@vitest/expect" "2.0.5"
"@vitest/pretty-format" "^2.0.5"
"@vitest/runner" "2.0.5"
"@vitest/snapshot" "2.0.5"
"@vitest/spy" "2.0.5"
"@vitest/utils" "2.0.5"
"@vitest/expect" "2.1.1"
"@vitest/mocker" "2.1.1"
"@vitest/pretty-format" "^2.1.1"
"@vitest/runner" "2.1.1"
"@vitest/snapshot" "2.1.1"
"@vitest/spy" "2.1.1"
"@vitest/utils" "2.1.1"
chai "^5.1.1"
debug "^4.3.5"
execa "^8.0.1"
magic-string "^0.30.10"
debug "^4.3.6"
magic-string "^0.30.11"
pathe "^1.1.2"
std-env "^3.7.0"
tinybench "^2.8.0"
tinybench "^2.9.0"
tinyexec "^0.3.0"
tinypool "^1.0.0"
tinyrainbow "^1.2.0"
vite "^5.0.0"
vite-node "2.0.5"
vite-node "2.1.1"
why-is-node-running "^2.3.0"
w3c-xmlserializer@^5.0.0: