Skip to content

Commit df4da92

Browse files
deps(npm): bump the npm-minor group in /app with 2 updates (#4153)
Bumps the npm-minor group in /app with 2 updates: [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc) and [eslint-plugin-react-refresh](https://github.com/ArnaudBarre/eslint-plugin-react-refresh). Updates `@vitejs/plugin-react-swc` from 4.2.2 to 4.2.3 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc/CHANGELOG.md"><code>@​vitejs/plugin-react-swc</code>'s changelog</a>.</em></p> <blockquote> <h2>4.2.3 (2026-02-02)</h2> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitejs/vite-plugin-react/commit/12914fa8c1d32323db6a134d46cd0ca83db91cd1"><code>12914fa</code></a> release: plugin-react-swc@4.2.3</li> <li><a href="https://github.com/vitejs/vite-plugin-react/commit/99e480cf01323268b6f7d5e582ba1662728845d9"><code>99e480c</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc/issues/1090">#1090</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-react/commit/4a858ea0539ec5a85cbf733287713730560ce268"><code>4a858ea</code></a> chore(deps): update dependency <code>@​types/react</code> to ^19.2.10 (<a href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc/issues/1088">#1088</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-react/commit/45da3a89b96a5fa16c7d8094272da0d9331b18ff"><code>45da3a8</code></a> fix(deps): update swc monorepo (<a href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc/issues/1089">#1089</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-react/commit/77f5e429d49b53c4115581abccaa9f5405bdf079"><code>77f5e42</code></a> fix(deps): update react 19.2.4 (<a href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc/issues/1084">#1084</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-react/commit/e327da491fcc0eb9e10b98d7dd674b8375cb0f4f"><code>e327da4</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc/issues/1083">#1083</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-react/commit/8528e98bb94da1ba32f24d24966ccb89d6cfd006"><code>8528e98</code></a> chore(deps): update dependency <code>@​types/react</code> to ^19.2.9 (<a href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc/issues/1082">#1082</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-react/commit/58dfb9d70f3d12db529c2e3da8e80ad36168cceb"><code>58dfb9d</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc/issues/1066">#1066</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-react/commit/fefad3dfd9a8505cb8e99d48848d56aa56a7bb48"><code>fefad3d</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc/issues/1048">#1048</a>)</li> <li><a href="https://github.com/vitejs/vite-plugin-react/commit/a5124db7210019b8c2a3f170d8a218262eba8da4"><code>a5124db</code></a> chore(deps): update dependency <code>@​types/react</code> to ^19.2.8 (<a href="https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react-swc/issues/1047">#1047</a>)</li> <li>Additional commits viewable in <a href="https://github.com/vitejs/vite-plugin-react/commits/plugin-react-swc@4.2.3/packages/plugin-react-swc">compare view</a></li> </ul> </details> <br /> Updates `eslint-plugin-react-refresh` from 0.4.26 to 0.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/releases">eslint-plugin-react-refresh's releases</a>.</em></p> <blockquote> <h2>v0.5.0</h2> <h3>Breaking changes</h3> <ul> <li>The package now ships as ESM and requires ESLint 9 + node 20. Because legacy config doesn't support ESM, this requires to use <a href="https://eslint.org/docs/latest/use/configure/migration-guide">flat config</a></li> <li>A new <code>reactRefresh</code> export is available and prefered over the default export. It's an object with two properties: <ul> <li><code>plugin</code>: The plugin object with the rules</li> <li><code>configs</code>: An object containing configuration presets, each exposed as a function. These functions accept your custom options, merge them with sensible defaults for that config, and return the final config object.</li> </ul> </li> <li><code>customHOCs</code> option was renamed to <code>extraHOCs</code></li> <li>Validation of HOCs calls is now more strict, you may need to add some HOCs to the <code>extraHOCs</code> option</li> </ul> <p>Config example:</p> <pre lang="js"><code>import { defineConfig } from &quot;eslint/config&quot;; import { reactRefresh } from &quot;eslint-plugin-react-refresh&quot;; <p>export default defineConfig( /* Main config */ reactRefresh.configs.vite({ extraHOCs: [&quot;someLibHOC&quot;] }), ); </code></pre></p> <p>Config example without config:</p> <pre lang="js"><code>import { defineConfig } from &quot;eslint/config&quot;; import { reactRefresh } from &quot;eslint-plugin-react-refresh&quot;; <p>export default defineConfig({ files: [&quot;<strong>/*.ts&quot;, &quot;</strong>/*.tsx&quot;], plugins: { // other plugins &quot;react-refresh&quot;: reactRefresh.plugin, }, rules: { // other rules &quot;react-refresh/only-export-components&quot;: [ &quot;warn&quot;, { extraHOCs: [&quot;someLibHOC&quot;] }, ], }, }); </code></pre></p> <h3>Why</h3> <p>This version follows a revamp of the internal logic to better make the difference between random call expressions like <code>export const Enum = Object.keys(Record)</code> and actual React HOC calls like <code>export const MemoComponent = memo(Component)</code>. (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/93">#93</a>)</p> <p>The rule now handles ternaries and patterns like <code>export default customHOC(props)(Component)</code> which makes it able to correctly support files like <a href="https://github.com/eclipse-apoapsis/ort-server/blob/ddfc624ce71b9f2ca6bad9b8c82d4c3249dd9c8b/ui/src/routes/__root.tsx">this one</a> given this config:</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/blob/main/CHANGELOG.md">eslint-plugin-react-refresh's changelog</a>.</em></p> <blockquote> <h2>0.5.0</h2> <h3>Breaking changes</h3> <ul> <li>The package now ships as ESM and requires ESLint 9 + node 20. Because legacy config doesn't support ESM, this requires to use <a href="https://eslint.org/docs/latest/use/configure/migration-guide">flat config</a></li> <li>A new <code>reactRefresh</code> export is available and prefered over the default export. It's an object with two properties: <ul> <li><code>plugin</code>: The plugin object with the rules</li> <li><code>configs</code>: An object containing configuration presets, each exposed as a function. These functions accept your custom options, merge them with sensible defaults for that config, and return the final config object.</li> </ul> </li> <li><code>customHOCs</code> option was renamed to <code>extraHOCs</code></li> <li>Validation of HOCs calls is now more strict, you may need to add some HOCs to the <code>extraHOCs</code> option</li> </ul> <p>Config example:</p> <pre lang="js"><code>import { defineConfig } from &quot;eslint/config&quot;; import { reactRefresh } from &quot;eslint-plugin-react-refresh&quot;; <p>export default defineConfig( /* Main config */ reactRefresh.configs.vite({ extraHOCs: [&quot;someLibHOC&quot;] }), ); </code></pre></p> <p>Config example without config:</p> <pre lang="js"><code>import { defineConfig } from &quot;eslint/config&quot;; import { reactRefresh } from &quot;eslint-plugin-react-refresh&quot;; <p>export default defineConfig({ files: [&quot;<strong>/*.ts&quot;, &quot;</strong>/*.tsx&quot;], plugins: { // other plugins &quot;react-refresh&quot;: reactRefresh.plugin, }, rules: { // other rules &quot;react-refresh/only-export-components&quot;: [ &quot;warn&quot;, { extraHOCs: [&quot;someLibHOC&quot;] }, ], }, }); </code></pre></p> <h3>Why</h3> <p>This version follows a revamp of the internal logic to better make the difference between random call expressions like <code>export const Enum = Object.keys(Record)</code> and actual React HOC calls like <code>export const MemoComponent = memo(Component)</code>. (fixes <a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/93">#93</a>)</p> <p>The rule now handles ternaries and patterns like <code>export default customHOC(props)(Component)</code> which makes it able to correctly support files like <a href="https://github.com/eclipse-apoapsis/ort-server/blob/ddfc624ce71b9f2ca6bad9b8c82d4c3249dd9c8b/ui/src/routes/__root.tsx">this one</a> given this config:</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/commit/daa2efb2a2899ad7e793fc42e01bddbbc132074f"><code>daa2efb</code></a> Revamp logic to catch more cases [publish] (<a href="https://redirect.github.com/ArnaudBarre/eslint-plugin-react-refresh/issues/97">#97</a>)</li> <li>See full diff in <a href="https://github.com/ArnaudBarre/eslint-plugin-react-refresh/compare/v0.4.26...v0.5.0">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>
1 parent e2da3bf commit df4da92

File tree

2 files changed

+80
-80
lines changed

2 files changed

+80
-80
lines changed

app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@
3636
"@types/react-syntax-highlighter": "^15.5.13",
3737
"@typescript-eslint/eslint-plugin": "^8.54.0",
3838
"@typescript-eslint/parser": "^8.54.0",
39-
"@vitejs/plugin-react-swc": "^4.0.0",
39+
"@vitejs/plugin-react-swc": "^4.2.3",
4040
"@vitest/coverage-v8": "^4.0.18",
4141
"eslint": "^9.39.2",
4242
"eslint-plugin-react-hooks": "^7.0.1",
43-
"eslint-plugin-react-refresh": "^0.4.26",
43+
"eslint-plugin-react-refresh": "^0.5.0",
4444
"typescript": "^5.9.2",
4545
"vite": "^7.3.1",
4646
"vitest": "^4.0.18"

app/yarn.lock

Lines changed: 78 additions & 78 deletions
Original file line numberDiff line numberDiff line change
@@ -667,10 +667,10 @@
667667
resolved "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz"
668668
integrity sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==
669669

670-
"@rolldown/pluginutils@1.0.0-beta.47":
671-
version "1.0.0-beta.47"
672-
resolved "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.47.tgz"
673-
integrity sha512-8QagwMH3kNCuzD8EWL8R2YPW5e4OrHNSAHRFDdmFqEwEaD/KcNKjVoumo+gP2vW5eKB2UPbM6vTYiGZX0ixLnw==
670+
"@rolldown/pluginutils@1.0.0-rc.2":
671+
version "1.0.0-rc.2"
672+
resolved "https://registry.yarnpkg.com/@rolldown/pluginutils/-/pluginutils-1.0.0-rc.2.tgz#10324e74cb3396cb7b616042ea7e9e6aa7d8d458"
673+
integrity sha512-izyXV/v+cHiRfozX62W9htOAvwMo4/bXKDrQ+vom1L1qRuexPock/7VZDAhnpHCLNejd3NJ6hiab+tO0D44Rgw==
674674

675675
"@rollup/rollup-android-arm-eabi@4.53.2":
676676
version "4.53.2"
@@ -787,74 +787,74 @@
787787
resolved "https://registry.yarnpkg.com/@standard-schema/spec/-/spec-1.1.0.tgz#a79b55dbaf8604812f52d140b2c9ab41bc150bb8"
788788
integrity sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==
789789

790-
"@swc/core-darwin-arm64@1.15.2":
791-
version "1.15.2"
792-
resolved "https://registry.yarnpkg.com/@swc/core-darwin-arm64/-/core-darwin-arm64-1.15.2.tgz#591fde48757f9c66f050eb82353def199c9967af"
793-
integrity sha512-Ghyz4RJv4zyXzrUC1B2MLQBbppIB5c4jMZJybX2ebdEQAvryEKp3gq1kBksCNsatKGmEgXul88SETU19sMWcrw==
794-
795-
"@swc/core-darwin-x64@1.15.2":
796-
version "1.15.2"
797-
resolved "https://registry.yarnpkg.com/@swc/core-darwin-x64/-/core-darwin-x64-1.15.2.tgz#f0c229fd21b0ef658cf50adb8b9a5f8c1919d2ec"
798-
integrity sha512-7n/PGJOcL2QoptzL42L5xFFfXY5rFxLHnuz1foU+4ruUTG8x2IebGhtwVTpaDN8ShEv2UZObBlT1rrXTba15Zw==
799-
800-
"@swc/core-linux-arm-gnueabihf@1.15.2":
801-
version "1.15.2"
802-
resolved "https://registry.yarnpkg.com/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.15.2.tgz#ab6d8535ab0294fb743044665c1c17330ccc2181"
803-
integrity sha512-ZUQVCfRJ9wimuxkStRSlLwqX4TEDmv6/J+E6FicGkQ6ssLMWoKDy0cAo93HiWt/TWEee5vFhFaSQYzCuBEGO6A==
804-
805-
"@swc/core-linux-arm64-gnu@1.15.2":
806-
version "1.15.2"
807-
resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.15.2.tgz#c5db7bbba6af3bd93fd79b74850cf2fe04f1c074"
808-
integrity sha512-GZh3pYBmfnpQ+JIg+TqLuz+pM+Mjsk5VOzi8nwKn/m+GvQBsxD5ectRtxuWUxMGNG8h0lMy4SnHRqdK3/iJl7A==
809-
810-
"@swc/core-linux-arm64-musl@1.15.2":
811-
version "1.15.2"
812-
resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.15.2.tgz#31cd61e6c83595248fda70a70e596f0a7f6cdf97"
813-
integrity sha512-5av6VYZZeneiYIodwzGMlnyVakpuYZryGzFIbgu1XP8wVylZxduEzup4eP8atiMDFmIm+s4wn8GySJmYqeJC0A==
814-
815-
"@swc/core-linux-x64-gnu@1.15.2":
816-
version "1.15.2"
817-
resolved "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.15.2.tgz"
818-
integrity sha512-1nO/UfdCLuT/uE/7oB3EZgTeZDCIa6nL72cFEpdegnqpJVNDI6Qb8U4g/4lfVPkmHq2lvxQ0L+n+JdgaZLhrRA==
819-
820-
"@swc/core-linux-x64-musl@1.15.2":
821-
version "1.15.2"
822-
resolved "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.15.2.tgz"
823-
integrity sha512-Ksfrb0Tx310kr+TLiUOvB/I80lyZ3lSOp6cM18zmNRT/92NB4mW8oX2Jo7K4eVEI2JWyaQUAFubDSha2Q+439A==
824-
825-
"@swc/core-win32-arm64-msvc@1.15.2":
826-
version "1.15.2"
827-
resolved "https://registry.yarnpkg.com/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.15.2.tgz#5696added38837b6b3f442d63989ef4fcaa2d3de"
828-
integrity sha512-IzUb5RlMUY0r1A9IuJrQ7Tbts1wWb73/zXVXT8VhewbHGoNlBKE0qUhKMED6Tv4wDF+pmbtUJmKXDthytAvLmg==
829-
830-
"@swc/core-win32-ia32-msvc@1.15.2":
831-
version "1.15.2"
832-
resolved "https://registry.yarnpkg.com/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.15.2.tgz#3e42427998d49b54c55d49752b410309c7d02357"
833-
integrity sha512-kCATEzuY2LP9AlbU2uScjcVhgnCAkRdu62vbce17Ro5kxEHxYWcugkveyBRS3AqZGtwAKYbMAuNloer9LS/hpw==
834-
835-
"@swc/core-win32-x64-msvc@1.15.2":
836-
version "1.15.2"
837-
resolved "https://registry.yarnpkg.com/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.15.2.tgz#fa6505e20a3753b6884b35353d1614a03c54df7f"
838-
integrity sha512-iJaHeYCF4jTn7OEKSa3KRiuVFIVYts8jYjNmCdyz1u5g8HRyTDISD76r8+ljEOgm36oviRQvcXaw6LFp1m0yyA==
839-
840-
"@swc/core@^1.13.5":
841-
version "1.15.2"
842-
resolved "https://registry.npmjs.org/@swc/core/-/core-1.15.2.tgz"
843-
integrity sha512-OQm+yJdXxvSjqGeaWhP6Ia264ogifwAO7Q12uTDVYj/Ks4jBTI4JknlcjDRAXtRhqbWsfbZyK/5RtuIPyptk3w==
790+
"@swc/core-darwin-arm64@1.15.11":
791+
version "1.15.11"
792+
resolved "https://registry.yarnpkg.com/@swc/core-darwin-arm64/-/core-darwin-arm64-1.15.11.tgz#6f177125831b765e5dacdd1d8c07de576962ad16"
793+
integrity sha512-QoIupRWVH8AF1TgxYyeA5nS18dtqMuxNwchjBIwJo3RdwLEFiJq6onOx9JAxHtuPwUkIVuU2Xbp+jCJ7Vzmgtg==
794+
795+
"@swc/core-darwin-x64@1.15.11":
796+
version "1.15.11"
797+
resolved "https://registry.yarnpkg.com/@swc/core-darwin-x64/-/core-darwin-x64-1.15.11.tgz#31381b6560bbd8b8ca6a0755262df321e28c039d"
798+
integrity sha512-S52Gu1QtPSfBYDiejlcfp9GlN+NjTZBRRNsz8PNwBgSE626/FUf2PcllVUix7jqkoMC+t0rS8t+2/aSWlMuQtA==
799+
800+
"@swc/core-linux-arm-gnueabihf@1.15.11":
801+
version "1.15.11"
802+
resolved "https://registry.yarnpkg.com/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.15.11.tgz#ea7831776f7d8a548db4a8a5f38ef37faf5c0c66"
803+
integrity sha512-lXJs8oXo6Z4yCpimpQ8vPeCjkgoHu5NoMvmJZ8qxDyU99KVdg6KwU9H79vzrmB+HfH+dCZ7JGMqMF//f8Cfvdg==
804+
805+
"@swc/core-linux-arm64-gnu@1.15.11":
806+
version "1.15.11"
807+
resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.15.11.tgz#c99a5843115ef57cbefd40b93c99cb130d6db12f"
808+
integrity sha512-chRsz1K52/vj8Mfq/QOugVphlKPWlMh10V99qfH41hbGvwAU6xSPd681upO4bKiOr9+mRIZZW+EfJqY42ZzRyA==
809+
810+
"@swc/core-linux-arm64-musl@1.15.11":
811+
version "1.15.11"
812+
resolved "https://registry.yarnpkg.com/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.15.11.tgz#9a7831f558b2ff504d3d6eaaf6a4c84e5232284b"
813+
integrity sha512-PYftgsTaGnfDK4m6/dty9ryK1FbLk+LosDJ/RJR2nkXGc8rd+WenXIlvHjWULiBVnS1RsjHHOXmTS4nDhe0v0w==
814+
815+
"@swc/core-linux-x64-gnu@1.15.11":
816+
version "1.15.11"
817+
resolved "https://registry.yarnpkg.com/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.15.11.tgz#4a1fce9b9abedde04459fefe5da9dd9e405a2ae8"
818+
integrity sha512-DKtnJKIHiZdARyTKiX7zdRjiDS1KihkQWatQiCHMv+zc2sfwb4Glrodx2VLOX4rsa92NLR0Sw8WLcPEMFY1szQ==
819+
820+
"@swc/core-linux-x64-musl@1.15.11":
821+
version "1.15.11"
822+
resolved "https://registry.yarnpkg.com/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.15.11.tgz#0865f23b1cc532d9d77e743a83279e074edbee25"
823+
integrity sha512-mUjjntHj4+8WBaiDe5UwRNHuEzLjIWBTSGTw0JT9+C9/Yyuh4KQqlcEQ3ro6GkHmBGXBFpGIj/o5VMyRWfVfWw==
824+
825+
"@swc/core-win32-arm64-msvc@1.15.11":
826+
version "1.15.11"
827+
resolved "https://registry.yarnpkg.com/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.15.11.tgz#73eda8b54c94046728f5983e5516223ad1009c59"
828+
integrity sha512-ZkNNG5zL49YpaFzfl6fskNOSxtcZ5uOYmWBkY4wVAvgbSAQzLRVBp+xArGWh2oXlY/WgL99zQSGTv7RI5E6nzA==
829+
830+
"@swc/core-win32-ia32-msvc@1.15.11":
831+
version "1.15.11"
832+
resolved "https://registry.yarnpkg.com/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.15.11.tgz#0df41547974ba9f26ba3e903e803ff523c15650b"
833+
integrity sha512-6XnzORkZCQzvTQ6cPrU7iaT9+i145oLwnin8JrfsLG41wl26+5cNQ2XV3zcbrnFEV6esjOceom9YO1w9mGJByw==
834+
835+
"@swc/core-win32-x64-msvc@1.15.11":
836+
version "1.15.11"
837+
resolved "https://registry.yarnpkg.com/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.15.11.tgz#f6f97500472c0ea4ab756c383c5d97896075f95c"
838+
integrity sha512-IQ2n6af7XKLL6P1gIeZACskSxK8jWtoKpJWLZmdXTDj1MGzktUy4i+FvpdtxFmJWNavRWH1VmTr6kAubRDHeKw==
839+
840+
"@swc/core@^1.15.11":
841+
version "1.15.11"
842+
resolved "https://registry.yarnpkg.com/@swc/core/-/core-1.15.11.tgz#8f52ab37b4d874b9cc1b1ae809778620b42dbf9f"
843+
integrity sha512-iLmLTodbYxU39HhMPaMUooPwO/zqJWvsqkrXv1ZI38rMb048p6N7qtAtTp37sw9NzSrvH6oli8EdDygo09IZ/w==
844844
dependencies:
845845
"@swc/counter" "^0.1.3"
846846
"@swc/types" "^0.1.25"
847847
optionalDependencies:
848-
"@swc/core-darwin-arm64" "1.15.2"
849-
"@swc/core-darwin-x64" "1.15.2"
850-
"@swc/core-linux-arm-gnueabihf" "1.15.2"
851-
"@swc/core-linux-arm64-gnu" "1.15.2"
852-
"@swc/core-linux-arm64-musl" "1.15.2"
853-
"@swc/core-linux-x64-gnu" "1.15.2"
854-
"@swc/core-linux-x64-musl" "1.15.2"
855-
"@swc/core-win32-arm64-msvc" "1.15.2"
856-
"@swc/core-win32-ia32-msvc" "1.15.2"
857-
"@swc/core-win32-x64-msvc" "1.15.2"
848+
"@swc/core-darwin-arm64" "1.15.11"
849+
"@swc/core-darwin-x64" "1.15.11"
850+
"@swc/core-linux-arm-gnueabihf" "1.15.11"
851+
"@swc/core-linux-arm64-gnu" "1.15.11"
852+
"@swc/core-linux-arm64-musl" "1.15.11"
853+
"@swc/core-linux-x64-gnu" "1.15.11"
854+
"@swc/core-linux-x64-musl" "1.15.11"
855+
"@swc/core-win32-arm64-msvc" "1.15.11"
856+
"@swc/core-win32-ia32-msvc" "1.15.11"
857+
"@swc/core-win32-x64-msvc" "1.15.11"
858858

859859
"@swc/counter@^0.1.3":
860860
version "0.1.3"
@@ -1043,13 +1043,13 @@
10431043
"@typescript-eslint/types" "8.54.0"
10441044
eslint-visitor-keys "^4.2.1"
10451045

1046-
"@vitejs/plugin-react-swc@^4.0.0":
1047-
version "4.2.2"
1048-
resolved "https://registry.npmjs.org/@vitejs/plugin-react-swc/-/plugin-react-swc-4.2.2.tgz"
1049-
integrity sha512-x+rE6tsxq/gxrEJN3Nv3dIV60lFflPj94c90b+NNo6n1QV1QQUTLoL0MpaOVasUZ0zqVBn7ead1B5ecx1JAGfA==
1046+
"@vitejs/plugin-react-swc@^4.2.3":
1047+
version "4.2.3"
1048+
resolved "https://registry.yarnpkg.com/@vitejs/plugin-react-swc/-/plugin-react-swc-4.2.3.tgz#ab92c8a00aab280951a04c06d99731cb7768c964"
1049+
integrity sha512-QIluDil2prhY1gdA3GGwxZzTAmLdi8cQ2CcuMW4PB/Wu4e/1pzqrwhYWVd09LInCRlDUidQjd0B70QWbjWtLxA==
10501050
dependencies:
1051-
"@rolldown/pluginutils" "1.0.0-beta.47"
1052-
"@swc/core" "^1.13.5"
1051+
"@rolldown/pluginutils" "1.0.0-rc.2"
1052+
"@swc/core" "^1.15.11"
10531053

10541054
"@vitest/coverage-v8@^4.0.18":
10551055
version "4.0.18"
@@ -1418,10 +1418,10 @@ eslint-plugin-react-hooks@^7.0.1:
14181418
zod "^3.25.0 || ^4.0.0"
14191419
zod-validation-error "^3.5.0 || ^4.0.0"
14201420

1421-
eslint-plugin-react-refresh@^0.4.26:
1422-
version "0.4.26"
1423-
resolved "https://registry.yarnpkg.com/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.26.tgz#2bcdd109ea9fb4e0b56bb1b5146cf8841b21b626"
1424-
integrity sha512-1RETEylht2O6FM/MvgnyvT+8K21wLqDNg4qD51Zj3guhjt433XbnnkVttHMyaVyAFD03QSV4LPS5iE3VQmO7XQ==
1421+
eslint-plugin-react-refresh@^0.5.0:
1422+
version "0.5.0"
1423+
resolved "https://registry.yarnpkg.com/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.5.0.tgz#9a9671b32871923ae8b45a30b752401a63168fef"
1424+
integrity sha512-ZYvmh7VfVgqR/7wR71I3Zl6hK/C5CcxdWYKZSpHawS5JCNgE4efhQWg/+/WPpgGAp9Ngp/rRZYyaIwmPQBq/lA==
14251425

14261426
eslint-scope@^8.4.0:
14271427
version "8.4.0"

0 commit comments

Comments
 (0)