diff --git a/.changeset/huge-pans-do.md b/.changeset/huge-pans-do.md new file mode 100644 index 0000000..6065ba5 --- /dev/null +++ b/.changeset/huge-pans-do.md @@ -0,0 +1,5 @@ +--- +'rsbuild-plugin-react-router': patch +--- + +do not set target when output is esm diff --git a/.nvmrc b/.nvmrc index 4a08ebe..8fdd954 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -22 \ No newline at end of file +22 \ No newline at end of file diff --git a/config/package.json b/config/package.json index 1d707eb..9e09473 100644 --- a/config/package.json +++ b/config/package.json @@ -3,7 +3,7 @@ "version": "1.0.1", "private": true, "devDependencies": { - "@rsbuild/core": "1.3.0-beta.2", + "@rsbuild/core": "1.3.2", "@rslib/core": "0.5.4", "@types/node": "^22.10.1", "typescript": "^5.7.2" diff --git a/examples/cloudflare/package.json b/examples/cloudflare/package.json index 8c61e0c..9300189 100644 --- a/examples/cloudflare/package.json +++ b/examples/cloudflare/package.json @@ -10,18 +10,18 @@ "typecheck": "tsc -b" }, "dependencies": { - "@react-router/node": "^7.4.0", - "@react-router/serve": "^7.4.0", + "@react-router/node": "^7.4.1", + "@react-router/serve": "^7.4.1", "isbot": "^5.1.17", "react": "^19.0.0", "react-dom": "^19.0.0", - "react-router": "^7.4.0" + "react-router": "^7.4.1" }, "devDependencies": { "@cloudflare/workers-types": "^4.20241112.0", - "@react-router/cloudflare": "^7.4.0", - "@react-router/dev": "^7.4.0", - "@rsbuild/core": "1.3.0-beta.2", + "@react-router/cloudflare": "^7.4.1", + "@react-router/dev": "^7.4.1", + "@rsbuild/core": "1.3.2", "@rsbuild/plugin-react": "^1.1.1", "@tailwindcss/postcss": "^4.0.0", "@types/node": "^20", diff --git a/examples/custom-node-server/package.json b/examples/custom-node-server/package.json index eded5e4..e5cd3e7 100644 --- a/examples/custom-node-server/package.json +++ b/examples/custom-node-server/package.json @@ -18,18 +18,18 @@ "author": "", "license": "ISC", "dependencies": { - "@react-router/express": "^7.4.0", - "@react-router/node": "^7.4.0", + "@react-router/express": "^7.4.1", + "@react-router/node": "^7.4.1", "express": "^4.21.2", "isbot": "^5.1.22", "react": "^19.0.0", "react-dom": "^19.0.0", - "react-router": "^7.4.0" + "react-router": "^7.4.1" }, "devDependencies": { "@playwright/test": "^1.50.1", - "@react-router/dev": "^7.4.0", - "@rsbuild/core": "1.3.0-beta.2", + "@react-router/dev": "^7.4.1", + "@rsbuild/core": "1.3.2", "@rsbuild/plugin-react": "^1.1.1", "@rsdoctor/rspack-plugin": "^0.4.13", "@types/express": "^5.0.0", diff --git a/examples/default-template/cjs-serve-patch.cjs b/examples/default-template/cjs-serve-patch.cjs new file mode 100644 index 0000000..eb70a55 --- /dev/null +++ b/examples/default-template/cjs-serve-patch.cjs @@ -0,0 +1,28 @@ +// Patch for handling CJS output from the build +const app = require('./build/server/static/js/app.js'); + +// Export all the top-level keys needed by react-router-serve +const { + assets, + assetsBuildDirectory, + basename, + entry, + future, + isSpaMode, + prerender, + publicPath, + routes, + ssr +} = app; + +// Export each property individually +exports.assets = assets; +exports.assetsBuildDirectory = assetsBuildDirectory; +exports.basename = basename; +exports.entry = entry; +exports.future = future; +exports.isSpaMode = isSpaMode; +exports.prerender = prerender; +exports.publicPath = publicPath; +exports.routes = routes; +exports.ssr = ssr; diff --git a/examples/default-template/package.json b/examples/default-template/package.json index 95e5176..3cea0bf 100644 --- a/examples/default-template/package.json +++ b/examples/default-template/package.json @@ -4,34 +4,38 @@ "type": "module", "scripts": { "build": "rsbuild build", - "dev": "rsbuild dev", - "start": "react-router-serve ./build/server/index.js", + "dev": "NODE_OPTIONS=\"--experimental-vm-modules --experimental-global-webcrypto\" rsbuild dev", + "start:esm": "react-router-serve ./build/server/static/js/app.js", + "start:cjs": "react-router-serve ./cjs-serve-patch.cjs", "typecheck": "react-router typegen && tsc", "test:e2e": "pnpm run dev & sleep 5 && playwright test", "test:e2e:debug": "playwright test --debug", "test:e2e:ui": "playwright test --ui" }, "dependencies": { - "@react-router/express": "^7.4.0", - "@react-router/node": "^7.4.0", - "@react-router/serve": "^7.4.0", + "@react-router/express": "^7.4.1", + "@react-router/node": "^7.4.1", + "@react-router/serve": "^7.4.1", "isbot": "^5.1.17", "react": "^19.0.0", "react-dom": "^19.0.0", - "react-router": "^7.4.0" + "react-router": "^7.4.1" }, "devDependencies": { "@playwright/test": "^1.50.1", - "@react-router/dev": "^7.4.0", - "@rsbuild/core": "1.3.0-beta.2", + "@react-router/dev": "^7.4.1", + "@rsbuild/core": "1.3.2", "@rsbuild/plugin-react": "^1.1.1", "@tailwindcss/postcss": "^4.0.0", "@types/node": "^20", "@types/react": "^19.0.1", "@types/react-dom": "^19.0.1", + "cross-env": "7.0.3", "react-router-devtools": "^1.1.6", "rsbuild-plugin-react-router": "workspace:*", + "string-replace-loader": "^3.1.0", "tailwindcss": "^4.0.0", + "text-encoder-lite": "^2.0.0", "typescript": "^5.7.2", "vite": "^5.4.11", "vite-tsconfig-paths": "^5.1.4" diff --git a/examples/epic-stack/.vscode/remix.code-snippets b/examples/epic-stack/.vscode/remix.code-snippets index 39e959f..079bee5 100644 --- a/examples/epic-stack/.vscode/remix.code-snippets +++ b/examples/epic-stack/.vscode/remix.code-snippets @@ -77,4 +77,4 @@ "}", ], }, -} \ No newline at end of file +} diff --git a/examples/epic-stack/app/root.tsx b/examples/epic-stack/app/root.tsx index da69cdd..b15e436 100644 --- a/examples/epic-stack/app/root.tsx +++ b/examples/epic-stack/app/root.tsx @@ -39,7 +39,7 @@ import { type Theme, getTheme } from './utils/theme.server.ts' import { makeTimings, time } from './utils/timing.server.ts' import { getToast } from './utils/toast.server.ts' import { useOptionalUser } from './utils/user.ts' -import "./styles/tailwind.css" +import './styles/tailwind.css' export const links: Route.LinksFunction = () => { return [ diff --git a/examples/epic-stack/app/utils/db.server.ts b/examples/epic-stack/app/utils/db.server.ts index 0de9d3d..361d3b1 100644 --- a/examples/epic-stack/app/utils/db.server.ts +++ b/examples/epic-stack/app/utils/db.server.ts @@ -1,5 +1,5 @@ import { remember } from '@epic-web/remember' -import {PrismaClient} from '@prisma/client/index' +import { PrismaClient } from '@prisma/client/index' import chalk from 'chalk' diff --git a/examples/epic-stack/docs/server-timing.md b/examples/epic-stack/docs/server-timing.md index a850934..cbbe179 100644 --- a/examples/epic-stack/docs/server-timing.md +++ b/examples/epic-stack/docs/server-timing.md @@ -78,7 +78,10 @@ export async function loader({ params }: Route.LoaderArgs) { // We have a general headers handler to save you from boilerplating. export const headers: HeadersFunction = pipeHeaders // this is basically what it does though -export const headers: Route.HeadersFunction = ({ loaderHeaders, parentHeaders }) => { +export const headers: Route.HeadersFunction = ({ + loaderHeaders, + parentHeaders, +}) => { return { 'Server-Timing': combineServerTimings(parentHeaders, loaderHeaders), // <-- 4. Send headers } diff --git a/examples/epic-stack/index.js b/examples/epic-stack/index.js index ac4f843..900d817 100644 --- a/examples/epic-stack/index.js +++ b/examples/epic-stack/index.js @@ -16,16 +16,15 @@ sourceMapSupport.install({ }, }) - if (process.env.MOCKS === 'true') { await import('./tests/mocks/index.ts') } if (process.env.NODE_ENV === 'production') { - let build = (await import('./build/server/static/js/app.js')) - build = build?.default || build; + let build = await import('./build/server/static/js/app.js') + build = build?.default || build build = build?.createApp || build - build(); + build() } else { await import('./server/dev-build.js') } diff --git a/examples/epic-stack/package.json b/examples/epic-stack/package.json index 4230a65..a6a099e 100644 --- a/examples/epic-stack/package.json +++ b/examples/epic-stack/package.json @@ -63,10 +63,10 @@ "@radix-ui/react-tooltip": "1.1.7", "@react-email/components": "0.0.32", "@react-router/express": "7.4.0", - "@react-router/node": "^7.4.0", + "@react-router/node": "^7.4.1", "@react-router/remix-routes-option-adapter": "7.4.0", "@remix-run/server-runtime": "2.15.3", - "@rsbuild/core": "1.3.0-beta.2", + "@rsbuild/core": "1.3.2", "@rsbuild/plugin-react": "1.1.1", "@sentry/node": "8.54.0", "@sentry/profiling-node": "8.54.0", @@ -100,7 +100,7 @@ "qrcode": "1.5.4", "react": "19.0.0", "react-dom": "19.0.0", - "react-router": "^7.4.0", + "react-router": "^7.4.1", "remix-auth": "3.7.0", "remix-auth-github": "1.7.0", "remix-utils": "8.1.0", @@ -120,7 +120,7 @@ "@epic-web/config": "1.16.5", "@faker-js/faker": "9.4.0", "@playwright/test": "1.50.1", - "@react-router/dev": "^7.4.0", + "@react-router/dev": "^7.4.1", "@sentry/vite-plugin": "3.1.2", "@sly-cli/sly": "1.14.0", "@testing-library/dom": "10.4.0", diff --git a/examples/epic-stack/rsbuild.config.ts b/examples/epic-stack/rsbuild.config.ts index 2ab1019..027b928 100644 --- a/examples/epic-stack/rsbuild.config.ts +++ b/examples/epic-stack/rsbuild.config.ts @@ -1,16 +1,16 @@ -import { defineConfig } from '@rsbuild/core'; -import { pluginReact } from '@rsbuild/plugin-react'; -import { pluginReactRouter } from 'rsbuild-plugin-react-router'; -import 'react-router'; +import { defineConfig } from '@rsbuild/core' +import { pluginReact } from '@rsbuild/plugin-react' +import { pluginReactRouter } from 'rsbuild-plugin-react-router' +import 'react-router' export default defineConfig(() => { - return { - output: { - externals: [ - 'better-sqlite3', - 'express', - ] - }, - plugins: [pluginReactRouter({customServer: true, serverOutput: 'commonjs'}), pluginReact()], - }; -}); + return { + output: { + externals: ['better-sqlite3', 'express'], + }, + plugins: [ + pluginReactRouter({ customServer: true, serverOutput: 'commonjs' }), + pluginReact(), + ], + } +}) diff --git a/examples/epic-stack/server/dev-build.js b/examples/epic-stack/server/dev-build.js index a01dcea..ce41f68 100644 --- a/examples/epic-stack/server/dev-build.js +++ b/examples/epic-stack/server/dev-build.js @@ -2,22 +2,22 @@ import { createRsbuild, loadConfig } from '@rsbuild/core' import 'dotenv/config' async function startServer() { - const config = await loadConfig() - const rsbuild = await createRsbuild({ - rsbuildConfig: config.content, - }) - const devServer = await rsbuild.createDevServer() + const config = await loadConfig() + const rsbuild = await createRsbuild({ + rsbuildConfig: config.content, + }) + const devServer = await rsbuild.createDevServer() - // Load the bundle first to get createApp - if (!devServer.environments?.node) { - throw new Error('Node environment not found in dev server') - } + // Load the bundle first to get createApp + if (!devServer.environments?.node) { + throw new Error('Node environment not found in dev server') + } - const bundle = await devServer.environments.node.loadBundle('app') - const { createApp } = bundle - const app = await createApp(devServer) + const bundle = await devServer.environments.node.loadBundle('app') + const { createApp } = bundle + const app = await createApp(devServer) - devServer.connectWebSocket({ server: app }) + devServer.connectWebSocket({ server: app }) } void startServer().catch(console.error) diff --git a/examples/epic-stack/server/index.ts b/examples/epic-stack/server/index.ts index 2531519..b7a8148 100644 --- a/examples/epic-stack/server/index.ts +++ b/examples/epic-stack/server/index.ts @@ -30,7 +30,6 @@ sourceMapSupport.install({ }, }) - const MODE = process.env.NODE_ENV ?? 'development' const IS_PROD = MODE === 'production' const IS_DEV = MODE === 'development' diff --git a/examples/epic-stack/server/utils/monitoring.ts b/examples/epic-stack/server/utils/monitoring.ts index d36a8c8..4e9c7f7 100644 --- a/examples/epic-stack/server/utils/monitoring.ts +++ b/examples/epic-stack/server/utils/monitoring.ts @@ -1,4 +1,4 @@ -import {PrismaInstrumentation} from '@prisma/instrumentation' +import { PrismaInstrumentation } from '@prisma/instrumentation' import * as Sentry from '@sentry/node' import { nodeProfilingIntegration } from '@sentry/profiling-node' diff --git a/examples/federation/epic-stack-remote/package.json b/examples/federation/epic-stack-remote/package.json index 1e909a7..8f91ed1 100644 --- a/examples/federation/epic-stack-remote/package.json +++ b/examples/federation/epic-stack-remote/package.json @@ -66,10 +66,10 @@ "@radix-ui/react-tooltip": "1.1.7", "@react-email/components": "0.0.32", "@react-router/express": "7.4.0", - "@react-router/node": "^7.4.0", + "@react-router/node": "^7.4.1", "@react-router/remix-routes-option-adapter": "7.4.0", "@remix-run/server-runtime": "2.15.3", - "@rsbuild/core": "1.3.0-beta.2", + "@rsbuild/core": "1.3.2", "@rsbuild/plugin-react": "1.1.1", "@sentry/node": "8.54.0", "@sentry/profiling-node": "8.54.0", @@ -103,7 +103,7 @@ "qrcode": "1.5.4", "react": "19.0.0", "react-dom": "19.0.0", - "react-router": "^7.4.0", + "react-router": "^7.4.1", "remix-auth": "3.7.0", "remix-auth-github": "1.7.0", "remix-utils": "8.1.0", @@ -122,7 +122,7 @@ "@epic-web/config": "1.16.5", "@faker-js/faker": "9.4.0", "@playwright/test": "1.50.1", - "@react-router/dev": "^7.4.0", + "@react-router/dev": "^7.4.1", "@sly-cli/sly": "1.14.0", "@testing-library/dom": "10.4.0", "@testing-library/jest-dom": "6.6.3", diff --git a/examples/federation/epic-stack/package.json b/examples/federation/epic-stack/package.json index 8330e34..629d5c1 100644 --- a/examples/federation/epic-stack/package.json +++ b/examples/federation/epic-stack/package.json @@ -66,10 +66,10 @@ "@radix-ui/react-tooltip": "1.1.7", "@react-email/components": "0.0.32", "@react-router/express": "7.4.0", - "@react-router/node": "^7.4.0", + "@react-router/node": "^7.4.1", "@react-router/remix-routes-option-adapter": "7.4.0", "@remix-run/server-runtime": "2.15.3", - "@rsbuild/core": "1.3.0-beta.2", + "@rsbuild/core": "1.3.2", "@rsbuild/plugin-react": "1.1.1", "@sentry/node": "8.54.0", "@sentry/profiling-node": "8.54.0", @@ -103,7 +103,7 @@ "qrcode": "1.5.4", "react": "19.0.0", "react-dom": "19.0.0", - "react-router": "^7.4.0", + "react-router": "^7.4.1", "remix-auth": "3.7.0", "remix-auth-github": "1.7.0", "remix-utils": "8.1.0", @@ -122,7 +122,7 @@ "@epic-web/config": "1.16.5", "@faker-js/faker": "9.4.0", "@playwright/test": "1.50.1", - "@react-router/dev": "^7.4.0", + "@react-router/dev": "^7.4.1", "@sly-cli/sly": "1.14.0", "@testing-library/dom": "10.4.0", "@testing-library/jest-dom": "6.6.3", diff --git a/package.json b/package.json index 2d2cc1e..833fc70 100644 --- a/package.json +++ b/package.json @@ -70,7 +70,7 @@ "@babel/traverse": "^7.26.3", "@babel/types": "^7.26.3", "@mjackson/node-fetch-server": "^0.3.0", - "@react-router/node": "^7.4.0", + "@react-router/node": "^7.4.1", "@rspack/plugin-react-refresh": "^1.0.1", "babel-dead-code-elimination": "^1.0.8", "esbuild": "^0.24.2", @@ -85,12 +85,12 @@ }, "devDependencies": { "@changesets/cli": "^2.28.1", - "@react-router/dev": "^7.4.0", - "@react-router/node": "^7.4.0", + "@react-router/dev": "^7.4.1", + "@react-router/node": "^7.4.1", "@rsbuild/config": "workspace:*", - "@rsbuild/core": "1.3.0-beta.2", + "@rsbuild/core": "1.3.2", "@rslib/core": "^0.5.4", - "@rspack/core": "1.3.0-beta.1", + "@rspack/core": "1.3.1", "@types/babel__core": "^7.6.8", "@types/babel__generator": "^7.6.8", "@types/babel__traverse": "^7.20.6", @@ -106,13 +106,13 @@ "prettier": "3.4.2", "react": "^19.0.0", "react-dom": "^19.0.0", - "react-router": "^7.4.0", - "react-router-dom": "^7.4.0", + "react-router": "^7.4.1", + "react-router-dom": "^7.4.1", "typescript": "^5.7.2", "vitest": "^3.0.5" }, "peerDependencies": { - "@rsbuild/core": "^1.3.0" + "@rsbuild/core": "^1.3.2" }, "publishConfig": { "access": "public", @@ -124,10 +124,10 @@ "overrides": { "react": "^19.0.0", "react-dom": "^19.0.0", - "react-router": "^7.4.0", - "react-router-dom": "^7.4.0", - "@react-router/node": "^7.4.0", - "@react-router/dev": "^7.4.0", + "react-router": "^7.4.1", + "react-router-dom": "^7.4.1", + "@react-router/node": "^7.4.1", + "@react-router/dev": "^7.4.1", "@types/express": "^5.0.0" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4221a9b..41c0866 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -7,10 +7,10 @@ settings: overrides: react: ^19.0.0 react-dom: ^19.0.0 - react-router: ^7.4.0 - react-router-dom: ^7.4.0 - '@react-router/node': ^7.4.0 - '@react-router/dev': ^7.4.0 + react-router: ^7.4.1 + react-router-dom: ^7.4.1 + '@react-router/node': ^7.4.1 + '@react-router/dev': ^7.4.1 '@types/express': ^5.0.0 importers: @@ -36,8 +36,8 @@ importers: specifier: ^0.3.0 version: 0.3.0 '@react-router/node': - specifier: ^7.4.0 - version: 7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + specifier: ^7.4.1 + version: 7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) '@rspack/plugin-react-refresh': specifier: ^1.0.1 version: 1.0.1(react-refresh@0.16.0) @@ -76,20 +76,20 @@ importers: specifier: ^2.28.1 version: 2.28.1 '@react-router/dev': - specifier: ^7.4.0 - version: 7.4.0(@react-router/serve@7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(jiti@2.4.2)(lightningcss@1.29.1)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(tsx@4.19.3)(typescript@5.7.3)(vite@6.2.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0))(yaml@2.7.0) + specifier: ^7.4.1 + version: 7.4.1(@react-router/serve@7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(lightningcss@1.29.1)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(typescript@5.7.3)(vite@5.4.14(@types/node@22.13.1)(lightningcss@1.29.1)(terser@5.39.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0)) '@rsbuild/config': specifier: workspace:* version: link:config '@rsbuild/core': - specifier: 1.3.0-beta.2 - version: 1.3.0-beta.2 + specifier: 1.3.2 + version: 1.3.2 '@rslib/core': specifier: ^0.5.4 version: 0.5.5(typescript@5.7.3) '@rspack/core': - specifier: 1.3.0-beta.1 - version: 1.3.0-beta.1(@swc/helpers@0.5.15) + specifier: 1.3.1 + version: 1.3.1(@swc/helpers@0.5.15) '@types/babel__core': specifier: ^7.6.8 version: 7.20.5 @@ -133,11 +133,11 @@ importers: specifier: ^19.0.0 version: 19.0.0(react@19.0.0) react-router: - specifier: ^7.4.0 - version: 7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + specifier: ^7.4.1 + version: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react-router-dom: - specifier: ^7.4.0 - version: 7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + specifier: ^7.4.1 + version: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) typescript: specifier: ^5.7.2 version: 5.7.3 @@ -148,8 +148,8 @@ importers: config: devDependencies: '@rsbuild/core': - specifier: 1.3.0-beta.2 - version: 1.3.0-beta.2 + specifier: 1.3.2 + version: 1.3.2 '@rslib/core': specifier: 0.5.4 version: 0.5.4(typescript@5.7.3) @@ -163,11 +163,11 @@ importers: examples/cloudflare: dependencies: '@react-router/node': - specifier: ^7.4.0 - version: 7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + specifier: ^7.4.1 + version: 7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) '@react-router/serve': - specifier: ^7.4.0 - version: 7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + specifier: ^7.4.1 + version: 7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) isbot: specifier: ^5.1.17 version: 5.1.22 @@ -178,24 +178,24 @@ importers: specifier: ^19.0.0 version: 19.0.0(react@19.0.0) react-router: - specifier: ^7.4.0 - version: 7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + specifier: ^7.4.1 + version: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) devDependencies: '@cloudflare/workers-types': specifier: ^4.20241112.0 version: 4.20250129.0 '@react-router/cloudflare': - specifier: ^7.4.0 - version: 7.4.0(@cloudflare/workers-types@4.20250129.0)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(tsup@8.3.6(jiti@2.4.2)(postcss@8.5.3)(tsx@4.19.3)(typescript@5.7.3)(yaml@2.7.0))(typescript@5.7.3) + specifier: ^7.4.1 + version: 7.4.1(@cloudflare/workers-types@4.20250129.0)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(tsup@8.3.6(jiti@2.4.2)(postcss@8.5.3)(tsx@4.19.3)(typescript@5.7.3)(yaml@2.7.0))(typescript@5.7.3) '@react-router/dev': - specifier: ^7.4.0 - version: 7.4.0(@react-router/serve@7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@20.17.17)(babel-plugin-macros@3.1.0)(jiti@2.4.2)(lightningcss@1.29.1)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(tsx@4.19.3)(typescript@5.7.3)(vite@6.2.2(@types/node@20.17.17)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0))(yaml@2.7.0) + specifier: ^7.4.1 + version: 7.4.1(@react-router/serve@7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@20.17.17)(babel-plugin-macros@3.1.0)(lightningcss@1.29.1)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(typescript@5.7.3)(vite@6.2.2(@types/node@20.17.17)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0)) '@rsbuild/core': - specifier: 1.3.0-beta.2 - version: 1.3.0-beta.2 + specifier: 1.3.2 + version: 1.3.2 '@rsbuild/plugin-react': specifier: ^1.1.1 - version: 1.1.1(@rsbuild/core@1.3.0-beta.2) + version: 1.1.1(@rsbuild/core@1.3.2) '@tailwindcss/postcss': specifier: ^4.0.0 version: 4.0.6 @@ -224,11 +224,11 @@ importers: examples/custom-node-server: dependencies: '@react-router/express': - specifier: ^7.4.0 - version: 7.4.0(express@4.21.2)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + specifier: ^7.4.1 + version: 7.4.1(express@4.21.2)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) '@react-router/node': - specifier: ^7.4.0 - version: 7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + specifier: ^7.4.1 + version: 7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) express: specifier: ^4.21.2 version: 4.21.2 @@ -242,24 +242,24 @@ importers: specifier: ^19.0.0 version: 19.0.0(react@19.0.0) react-router: - specifier: ^7.4.0 - version: 7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + specifier: ^7.4.1 + version: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) devDependencies: '@playwright/test': specifier: ^1.50.1 version: 1.50.1 '@react-router/dev': - specifier: ^7.4.0 - version: 7.4.0(@react-router/serve@7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(jiti@2.4.2)(lightningcss@1.29.1)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(tsx@4.19.3)(typescript@5.7.3)(vite@6.2.2(@types/node@22.13.13)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0))(yaml@2.7.0) + specifier: ^7.4.1 + version: 7.4.1(@react-router/serve@7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.14.0)(babel-plugin-macros@3.1.0)(lightningcss@1.29.1)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(typescript@5.7.3)(vite@6.2.2(@types/node@22.14.0)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0)) '@rsbuild/core': - specifier: 1.3.0-beta.2 - version: 1.3.0-beta.2 + specifier: 1.3.2 + version: 1.3.2 '@rsbuild/plugin-react': specifier: ^1.1.1 - version: 1.1.1(@rsbuild/core@1.3.0-beta.2) + version: 1.1.1(@rsbuild/core@1.3.2) '@rsdoctor/rspack-plugin': specifier: ^0.4.13 - version: 0.4.13(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) + version: 0.4.13(@rspack/core@1.3.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) '@types/express': specifier: ^5.0.0 version: 5.0.0 @@ -285,14 +285,14 @@ importers: examples/default-template: dependencies: '@react-router/express': - specifier: ^7.4.0 - version: 7.4.0(express@4.21.2)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + specifier: ^7.4.1 + version: 7.4.1(express@4.21.2)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) '@react-router/node': - specifier: ^7.4.0 - version: 7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + specifier: ^7.4.1 + version: 7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) '@react-router/serve': - specifier: ^7.4.0 - version: 7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + specifier: ^7.4.1 + version: 7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) isbot: specifier: ^5.1.17 version: 5.1.22 @@ -303,21 +303,21 @@ importers: specifier: ^19.0.0 version: 19.0.0(react@19.0.0) react-router: - specifier: ^7.4.0 - version: 7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + specifier: ^7.4.1 + version: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) devDependencies: '@playwright/test': specifier: ^1.50.1 version: 1.50.1 '@react-router/dev': - specifier: ^7.4.0 - version: 7.4.0(@react-router/serve@7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@20.17.17)(babel-plugin-macros@3.1.0)(jiti@2.4.2)(lightningcss@1.29.1)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(tsx@4.19.3)(typescript@5.7.3)(vite@5.4.14(@types/node@20.17.17)(lightningcss@1.29.1)(terser@5.39.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0))(yaml@2.7.0) + specifier: ^7.4.1 + version: 7.4.1(@react-router/serve@7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@20.17.17)(babel-plugin-macros@3.1.0)(lightningcss@1.29.1)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(typescript@5.7.3)(vite@5.4.14(@types/node@20.17.17)(lightningcss@1.29.1)(terser@5.39.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0)) '@rsbuild/core': - specifier: 1.3.0-beta.2 - version: 1.3.0-beta.2 + specifier: 1.3.2 + version: 1.3.2 '@rsbuild/plugin-react': specifier: ^1.1.1 - version: 1.1.1(@rsbuild/core@1.3.0-beta.2) + version: 1.1.1(@rsbuild/core@1.3.2) '@tailwindcss/postcss': specifier: ^4.0.0 version: 4.0.6 @@ -330,15 +330,24 @@ importers: '@types/react-dom': specifier: ^19.0.1 version: 19.0.3(@types/react@19.0.8) + cross-env: + specifier: 7.0.3 + version: 7.0.3 react-router-devtools: specifier: ^1.1.6 - version: 1.1.6(@types/react-dom@19.0.3(@types/react@19.0.8))(@types/react@19.0.8)(react-dom@19.0.0(react@19.0.0))(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(vite@5.4.14(@types/node@20.17.17)(lightningcss@1.29.1)(terser@5.39.0)) + version: 1.1.6(@types/react-dom@19.0.3(@types/react@19.0.8))(@types/react@19.0.8)(react-dom@19.0.0(react@19.0.0))(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(vite@5.4.14(@types/node@20.17.17)(lightningcss@1.29.1)(terser@5.39.0)) rsbuild-plugin-react-router: specifier: workspace:* version: link:../.. + string-replace-loader: + specifier: ^3.1.0 + version: 3.1.0(webpack@5.97.1(esbuild@0.24.2)) tailwindcss: specifier: ^4.0.0 version: 4.0.6 + text-encoder-lite: + specifier: ^2.0.0 + version: 2.0.0 typescript: specifier: ^5.7.2 version: 5.7.3 @@ -416,22 +425,22 @@ importers: version: 0.0.32(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@react-router/express': specifier: 7.4.0 - version: 7.4.0(express@4.21.2)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + version: 7.4.0(express@4.21.2)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) '@react-router/node': - specifier: ^7.4.0 - version: 7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + specifier: ^7.4.1 + version: 7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) '@react-router/remix-routes-option-adapter': specifier: 7.4.0 - version: 7.4.0(@react-router/dev@7.4.0(@react-router/serve@7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(jiti@2.4.2)(lightningcss@1.29.1)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(tsx@4.19.2)(typescript@5.7.3)(vite@6.0.11(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0))(yaml@2.7.0))(typescript@5.7.3) + version: 7.4.0(@react-router/dev@7.4.1(@react-router/serve@7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(lightningcss@1.29.1)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(typescript@5.7.3)(vite@6.0.11(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0)))(typescript@5.7.3) '@remix-run/server-runtime': specifier: 2.15.3 version: 2.15.3(typescript@5.7.3) '@rsbuild/core': - specifier: 1.3.0-beta.2 - version: 1.3.0-beta.2 + specifier: 1.3.2 + version: 1.3.2 '@rsbuild/plugin-react': specifier: 1.1.1 - version: 1.1.1(@rsbuild/core@1.3.0-beta.2) + version: 1.1.1(@rsbuild/core@1.3.2) '@sentry/node': specifier: 8.54.0 version: 8.54.0 @@ -529,8 +538,8 @@ importers: specifier: ^19.0.0 version: 19.0.0(react@19.0.0) react-router: - specifier: ^7.4.0 - version: 7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + specifier: ^7.4.1 + version: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) remix-auth: specifier: 3.7.0 version: 3.7.0(@remix-run/react@2.15.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3))(@remix-run/server-runtime@2.15.3(typescript@5.7.3)) @@ -539,7 +548,7 @@ importers: version: 1.7.0(@remix-run/server-runtime@2.15.3(typescript@5.7.3))(remix-auth@3.7.0(@remix-run/react@2.15.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3))(@remix-run/server-runtime@2.15.3(typescript@5.7.3))) remix-utils: specifier: 8.1.0 - version: 8.1.0(@oslojs/crypto@1.0.1)(@oslojs/encoding@1.1.0)(intl-parse-accept-language@1.0.0)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(zod@3.24.1) + version: 8.1.0(@oslojs/crypto@1.0.1)(@oslojs/encoding@1.1.0)(intl-parse-accept-language@1.0.0)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(zod@3.24.1) rsbuild-plugin-react-router: specifier: workspace:* version: link:../.. @@ -584,8 +593,8 @@ importers: specifier: 1.50.1 version: 1.50.1 '@react-router/dev': - specifier: ^7.4.0 - version: 7.4.0(@react-router/serve@7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(jiti@2.4.2)(lightningcss@1.29.1)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(tsx@4.19.2)(typescript@5.7.3)(vite@6.0.11(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0))(yaml@2.7.0) + specifier: ^7.4.1 + version: 7.4.1(@react-router/serve@7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(lightningcss@1.29.1)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(typescript@5.7.3)(vite@6.0.11(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0)) '@sentry/vite-plugin': specifier: 3.1.2 version: 3.1.2(encoding@0.1.13) @@ -693,7 +702,7 @@ importers: version: 0.6.11(prettier@3.4.2) remix-flat-routes: specifier: 0.8.4 - version: 0.8.4(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)) + version: 0.8.4(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)) tsx: specifier: 4.19.2 version: 4.19.2 @@ -741,13 +750,13 @@ importers: version: 0.7.0 '@module-federation/enhanced': specifier: 0.0.0-next-20250321011937 - version: 0.0.0-next-20250321011937(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3)(webpack@5.97.1(esbuild@0.24.2)) + version: 0.0.0-next-20250321011937(@rspack/core@1.3.1(@swc/helpers@0.5.15))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3)(webpack@5.97.1(esbuild@0.24.2)) '@module-federation/node': specifier: 0.0.0-next-20250321011937 - version: 0.0.0-next-20250321011937(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3)(webpack@5.97.1(esbuild@0.24.2)) + version: 0.0.0-next-20250321011937(@rspack/core@1.3.1(@swc/helpers@0.5.15))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3)(webpack@5.97.1(esbuild@0.24.2)) '@module-federation/rsbuild-plugin': specifier: 0.0.0-next-20250321011937 - version: 0.0.0-next-20250321011937(@rsbuild/core@1.3.0-beta.2)(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3)(webpack@5.97.1(esbuild@0.24.2)) + version: 0.0.0-next-20250321011937(@rsbuild/core@1.3.2)(@rspack/core@1.3.1(@swc/helpers@0.5.15))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3)(webpack@5.97.1(esbuild@0.24.2)) '@nasa-gcn/remix-seo': specifier: 2.0.1 version: 2.0.1(@remix-run/react@2.15.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3))(@remix-run/server-runtime@2.15.3(typescript@5.7.3)) @@ -789,22 +798,22 @@ importers: version: 0.0.32(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@react-router/express': specifier: 7.4.0 - version: 7.4.0(express@4.21.2)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + version: 7.4.0(express@4.21.2)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) '@react-router/node': - specifier: ^7.4.0 - version: 7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + specifier: ^7.4.1 + version: 7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) '@react-router/remix-routes-option-adapter': specifier: 7.4.0 - version: 7.4.0(@react-router/dev@7.4.0(@react-router/serve@7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(jiti@2.4.2)(lightningcss@1.29.1)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(tsx@4.19.2)(typescript@5.7.3)(vite@6.2.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0))(yaml@2.7.0))(typescript@5.7.3) + version: 7.4.0(@react-router/dev@7.4.1(@react-router/serve@7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(lightningcss@1.29.1)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(typescript@5.7.3)(vite@6.2.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0)))(typescript@5.7.3) '@remix-run/server-runtime': specifier: 2.15.3 version: 2.15.3(typescript@5.7.3) '@rsbuild/core': - specifier: 1.3.0-beta.2 - version: 1.3.0-beta.2 + specifier: 1.3.2 + version: 1.3.2 '@rsbuild/plugin-react': specifier: 1.1.1 - version: 1.1.1(@rsbuild/core@1.3.0-beta.2) + version: 1.1.1(@rsbuild/core@1.3.2) '@sentry/node': specifier: 8.54.0 version: 8.54.0 @@ -902,8 +911,8 @@ importers: specifier: ^19.0.0 version: 19.0.0(react@19.0.0) react-router: - specifier: ^7.4.0 - version: 7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + specifier: ^7.4.1 + version: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) remix-auth: specifier: 3.7.0 version: 3.7.0(@remix-run/react@2.15.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3))(@remix-run/server-runtime@2.15.3(typescript@5.7.3)) @@ -912,7 +921,7 @@ importers: version: 1.7.0(@remix-run/server-runtime@2.15.3(typescript@5.7.3))(remix-auth@3.7.0(@remix-run/react@2.15.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3))(@remix-run/server-runtime@2.15.3(typescript@5.7.3))) remix-utils: specifier: 8.1.0 - version: 8.1.0(@oslojs/crypto@1.0.1)(@oslojs/encoding@1.1.0)(intl-parse-accept-language@1.0.0)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(zod@3.24.1) + version: 8.1.0(@oslojs/crypto@1.0.1)(@oslojs/encoding@1.1.0)(intl-parse-accept-language@1.0.0)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(zod@3.24.1) rsbuild-plugin-react-router: specifier: workspace:* version: link:../../.. @@ -954,8 +963,8 @@ importers: specifier: 1.50.1 version: 1.50.1 '@react-router/dev': - specifier: ^7.4.0 - version: 7.4.0(@react-router/serve@7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(jiti@2.4.2)(lightningcss@1.29.1)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(tsx@4.19.2)(typescript@5.7.3)(vite@6.2.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0))(yaml@2.7.0) + specifier: ^7.4.1 + version: 7.4.1(@react-router/serve@7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(lightningcss@1.29.1)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(typescript@5.7.3)(vite@6.2.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0)) '@sly-cli/sly': specifier: 1.14.0 version: 1.14.0(typescript@5.7.3) @@ -1057,7 +1066,7 @@ importers: version: 0.6.11(prettier@3.4.2) remix-flat-routes: specifier: 0.8.4 - version: 0.8.4(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)) + version: 0.8.4(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)) tsx: specifier: 4.19.2 version: 4.19.2 @@ -1096,13 +1105,13 @@ importers: version: 0.7.0 '@module-federation/enhanced': specifier: 0.0.0-next-20250321011937 - version: 0.0.0-next-20250321011937(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3)(webpack@5.97.1(esbuild@0.24.2)) + version: 0.0.0-next-20250321011937(@rspack/core@1.3.1(@swc/helpers@0.5.15))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3)(webpack@5.97.1(esbuild@0.24.2)) '@module-federation/node': specifier: 0.0.0-next-20250321011937 - version: 0.0.0-next-20250321011937(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3)(webpack@5.97.1(esbuild@0.24.2)) + version: 0.0.0-next-20250321011937(@rspack/core@1.3.1(@swc/helpers@0.5.15))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3)(webpack@5.97.1(esbuild@0.24.2)) '@module-federation/rsbuild-plugin': specifier: 0.0.0-next-20250321011937 - version: 0.0.0-next-20250321011937(@rsbuild/core@1.3.0-beta.2)(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3)(webpack@5.97.1(esbuild@0.24.2)) + version: 0.0.0-next-20250321011937(@rsbuild/core@1.3.2)(@rspack/core@1.3.1(@swc/helpers@0.5.15))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3)(webpack@5.97.1(esbuild@0.24.2)) '@nasa-gcn/remix-seo': specifier: 2.0.1 version: 2.0.1(@remix-run/react@2.15.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3))(@remix-run/server-runtime@2.15.3(typescript@5.7.3)) @@ -1144,22 +1153,22 @@ importers: version: 0.0.32(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@react-router/express': specifier: 7.4.0 - version: 7.4.0(express@4.21.2)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + version: 7.4.0(express@4.21.2)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) '@react-router/node': - specifier: ^7.4.0 - version: 7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + specifier: ^7.4.1 + version: 7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) '@react-router/remix-routes-option-adapter': specifier: 7.4.0 - version: 7.4.0(@react-router/dev@7.4.0(@react-router/serve@7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(jiti@2.4.2)(lightningcss@1.29.1)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(tsx@4.19.2)(typescript@5.7.3)(vite@6.2.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0))(yaml@2.7.0))(typescript@5.7.3) + version: 7.4.0(@react-router/dev@7.4.1(@react-router/serve@7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(lightningcss@1.29.1)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(typescript@5.7.3)(vite@6.2.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0)))(typescript@5.7.3) '@remix-run/server-runtime': specifier: 2.15.3 version: 2.15.3(typescript@5.7.3) '@rsbuild/core': - specifier: 1.3.0-beta.2 - version: 1.3.0-beta.2 + specifier: 1.3.2 + version: 1.3.2 '@rsbuild/plugin-react': specifier: 1.1.1 - version: 1.1.1(@rsbuild/core@1.3.0-beta.2) + version: 1.1.1(@rsbuild/core@1.3.2) '@sentry/node': specifier: 8.54.0 version: 8.54.0 @@ -1257,8 +1266,8 @@ importers: specifier: ^19.0.0 version: 19.0.0(react@19.0.0) react-router: - specifier: ^7.4.0 - version: 7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + specifier: ^7.4.1 + version: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) remix-auth: specifier: 3.7.0 version: 3.7.0(@remix-run/react@2.15.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3))(@remix-run/server-runtime@2.15.3(typescript@5.7.3)) @@ -1267,7 +1276,7 @@ importers: version: 1.7.0(@remix-run/server-runtime@2.15.3(typescript@5.7.3))(remix-auth@3.7.0(@remix-run/react@2.15.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3))(@remix-run/server-runtime@2.15.3(typescript@5.7.3))) remix-utils: specifier: 8.1.0 - version: 8.1.0(@oslojs/crypto@1.0.1)(@oslojs/encoding@1.1.0)(intl-parse-accept-language@1.0.0)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(zod@3.24.1) + version: 8.1.0(@oslojs/crypto@1.0.1)(@oslojs/encoding@1.1.0)(intl-parse-accept-language@1.0.0)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(zod@3.24.1) rsbuild-plugin-react-router: specifier: workspace:* version: link:../../.. @@ -1309,8 +1318,8 @@ importers: specifier: 1.50.1 version: 1.50.1 '@react-router/dev': - specifier: ^7.4.0 - version: 7.4.0(@react-router/serve@7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(jiti@2.4.2)(lightningcss@1.29.1)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(tsx@4.19.2)(typescript@5.7.3)(vite@6.2.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0))(yaml@2.7.0) + specifier: ^7.4.1 + version: 7.4.1(@react-router/serve@7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(lightningcss@1.29.1)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(typescript@5.7.3)(vite@6.2.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0)) '@sly-cli/sly': specifier: 1.14.0 version: 1.14.0(typescript@5.7.3) @@ -1412,7 +1421,7 @@ importers: version: 0.6.11(prettier@3.4.2) remix-flat-routes: specifier: 0.8.4 - version: 0.8.4(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)) + version: 0.8.4(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)) tsx: specifier: 4.19.2 version: 4.19.2 @@ -1957,8 +1966,8 @@ packages: cpu: [ppc64] os: [aix] - '@esbuild/aix-ppc64@0.25.1': - resolution: {integrity: sha512-kfYGy8IdzTGy+z0vFGvExZtxkFlA4zAxgKEahG9KE1ScBjpQnFsNOX8KTU5ojNru5ed5CVoJYXFtoxaq5nFbjQ==} + '@esbuild/aix-ppc64@0.25.2': + resolution: {integrity: sha512-wCIboOL2yXZym2cgm6mlA742s9QeJ8DjGVaL39dLN4rRwrOgOyYSnOaFPhKZGLb2ngj4EyfAFjsNJwPXZvseag==} engines: {node: '>=18'} cpu: [ppc64] os: [aix] @@ -1993,8 +2002,8 @@ packages: cpu: [arm64] os: [android] - '@esbuild/android-arm64@0.25.1': - resolution: {integrity: sha512-50tM0zCJW5kGqgG7fQ7IHvQOcAn9TKiVRuQ/lN0xR+T2lzEFvAi1ZcS8DiksFcEpf1t/GYOeOfCAgDHFpkiSmA==} + '@esbuild/android-arm64@0.25.2': + resolution: {integrity: sha512-5ZAX5xOmTligeBaeNEPnPaeEuah53Id2tX4c2CVP3JaROTH+j4fnfHCkr1PjXMd78hMst+TlkfKcW/DlTq0i4w==} engines: {node: '>=18'} cpu: [arm64] os: [android] @@ -2029,8 +2038,8 @@ packages: cpu: [arm] os: [android] - '@esbuild/android-arm@0.25.1': - resolution: {integrity: sha512-dp+MshLYux6j/JjdqVLnMglQlFu+MuVeNrmT5nk6q07wNhCdSnB7QZj+7G8VMUGh1q+vj2Bq8kRsuyA00I/k+Q==} + '@esbuild/android-arm@0.25.2': + resolution: {integrity: sha512-NQhH7jFstVY5x8CKbcfa166GoV0EFkaPkCKBQkdPJFvo5u+nGXLEH/ooniLb3QI8Fk58YAx7nsPLozUWfCBOJA==} engines: {node: '>=18'} cpu: [arm] os: [android] @@ -2065,8 +2074,8 @@ packages: cpu: [x64] os: [android] - '@esbuild/android-x64@0.25.1': - resolution: {integrity: sha512-GCj6WfUtNldqUzYkN/ITtlhwQqGWu9S45vUXs7EIYf+7rCiiqH9bCloatO9VhxsL0Pji+PF4Lz2XXCES+Q8hDw==} + '@esbuild/android-x64@0.25.2': + resolution: {integrity: sha512-Ffcx+nnma8Sge4jzddPHCZVRvIfQ0kMsUsCMcJRHkGJ1cDmhe4SsrYIjLUKn1xpHZybmOqCWwB0zQvsjdEHtkg==} engines: {node: '>=18'} cpu: [x64] os: [android] @@ -2101,8 +2110,8 @@ packages: cpu: [arm64] os: [darwin] - '@esbuild/darwin-arm64@0.25.1': - resolution: {integrity: sha512-5hEZKPf+nQjYoSr/elb62U19/l1mZDdqidGfmFutVUjjUZrOazAtwK+Kr+3y0C/oeJfLlxo9fXb1w7L+P7E4FQ==} + '@esbuild/darwin-arm64@0.25.2': + resolution: {integrity: sha512-MpM6LUVTXAzOvN4KbjzU/q5smzryuoNjlriAIx+06RpecwCkL9JpenNzpKd2YMzLJFOdPqBpuub6eVRP5IgiSA==} engines: {node: '>=18'} cpu: [arm64] os: [darwin] @@ -2137,8 +2146,8 @@ packages: cpu: [x64] os: [darwin] - '@esbuild/darwin-x64@0.25.1': - resolution: {integrity: sha512-hxVnwL2Dqs3fM1IWq8Iezh0cX7ZGdVhbTfnOy5uURtao5OIVCEyj9xIzemDi7sRvKsuSdtCAhMKarxqtlyVyfA==} + '@esbuild/darwin-x64@0.25.2': + resolution: {integrity: sha512-5eRPrTX7wFyuWe8FqEFPG2cU0+butQQVNcT4sVipqjLYQjjh8a8+vUTfgBKM88ObB85ahsnTwF7PSIt6PG+QkA==} engines: {node: '>=18'} cpu: [x64] os: [darwin] @@ -2173,8 +2182,8 @@ packages: cpu: [arm64] os: [freebsd] - '@esbuild/freebsd-arm64@0.25.1': - resolution: {integrity: sha512-1MrCZs0fZa2g8E+FUo2ipw6jw5qqQiH+tERoS5fAfKnRx6NXH31tXBKI3VpmLijLH6yriMZsxJtaXUyFt/8Y4A==} + '@esbuild/freebsd-arm64@0.25.2': + resolution: {integrity: sha512-mLwm4vXKiQ2UTSX4+ImyiPdiHjiZhIaE9QvC7sw0tZ6HoNMjYAqQpGyui5VRIi5sGd+uWq940gdCbY3VLvsO1w==} engines: {node: '>=18'} cpu: [arm64] os: [freebsd] @@ -2209,8 +2218,8 @@ packages: cpu: [x64] os: [freebsd] - '@esbuild/freebsd-x64@0.25.1': - resolution: {integrity: sha512-0IZWLiTyz7nm0xuIs0q1Y3QWJC52R8aSXxe40VUxm6BB1RNmkODtW6LHvWRrGiICulcX7ZvyH6h5fqdLu4gkww==} + '@esbuild/freebsd-x64@0.25.2': + resolution: {integrity: sha512-6qyyn6TjayJSwGpm8J9QYYGQcRgc90nmfdUb0O7pp1s4lTY+9D0H9O02v5JqGApUyiHOtkz6+1hZNvNtEhbwRQ==} engines: {node: '>=18'} cpu: [x64] os: [freebsd] @@ -2245,8 +2254,8 @@ packages: cpu: [arm64] os: [linux] - '@esbuild/linux-arm64@0.25.1': - resolution: {integrity: sha512-jaN3dHi0/DDPelk0nLcXRm1q7DNJpjXy7yWaWvbfkPvI+7XNSc/lDOnCLN7gzsyzgu6qSAmgSvP9oXAhP973uQ==} + '@esbuild/linux-arm64@0.25.2': + resolution: {integrity: sha512-gq/sjLsOyMT19I8obBISvhoYiZIAaGF8JpeXu1u8yPv8BE5HlWYobmlsfijFIZ9hIVGYkbdFhEqC0NvM4kNO0g==} engines: {node: '>=18'} cpu: [arm64] os: [linux] @@ -2281,8 +2290,8 @@ packages: cpu: [arm] os: [linux] - '@esbuild/linux-arm@0.25.1': - resolution: {integrity: sha512-NdKOhS4u7JhDKw9G3cY6sWqFcnLITn6SqivVArbzIaf3cemShqfLGHYMx8Xlm/lBit3/5d7kXvriTUGa5YViuQ==} + '@esbuild/linux-arm@0.25.2': + resolution: {integrity: sha512-UHBRgJcmjJv5oeQF8EpTRZs/1knq6loLxTsjc3nxO9eXAPDLcWW55flrMVc97qFPbmZP31ta1AZVUKQzKTzb0g==} engines: {node: '>=18'} cpu: [arm] os: [linux] @@ -2317,8 +2326,8 @@ packages: cpu: [ia32] os: [linux] - '@esbuild/linux-ia32@0.25.1': - resolution: {integrity: sha512-OJykPaF4v8JidKNGz8c/q1lBO44sQNUQtq1KktJXdBLn1hPod5rE/Hko5ugKKZd+D2+o1a9MFGUEIUwO2YfgkQ==} + '@esbuild/linux-ia32@0.25.2': + resolution: {integrity: sha512-bBYCv9obgW2cBP+2ZWfjYTU+f5cxRoGGQ5SeDbYdFCAZpYWrfjjfYwvUpP8MlKbP0nwZ5gyOU/0aUzZ5HWPuvQ==} engines: {node: '>=18'} cpu: [ia32] os: [linux] @@ -2353,8 +2362,8 @@ packages: cpu: [loong64] os: [linux] - '@esbuild/linux-loong64@0.25.1': - resolution: {integrity: sha512-nGfornQj4dzcq5Vp835oM/o21UMlXzn79KobKlcs3Wz9smwiifknLy4xDCLUU0BWp7b/houtdrgUz7nOGnfIYg==} + '@esbuild/linux-loong64@0.25.2': + resolution: {integrity: sha512-SHNGiKtvnU2dBlM5D8CXRFdd+6etgZ9dXfaPCeJtz+37PIUlixvlIhI23L5khKXs3DIzAn9V8v+qb1TRKrgT5w==} engines: {node: '>=18'} cpu: [loong64] os: [linux] @@ -2389,8 +2398,8 @@ packages: cpu: [mips64el] os: [linux] - '@esbuild/linux-mips64el@0.25.1': - resolution: {integrity: sha512-1osBbPEFYwIE5IVB/0g2X6i1qInZa1aIoj1TdL4AaAb55xIIgbg8Doq6a5BzYWgr+tEcDzYH67XVnTmUzL+nXg==} + '@esbuild/linux-mips64el@0.25.2': + resolution: {integrity: sha512-hDDRlzE6rPeoj+5fsADqdUZl1OzqDYow4TB4Y/3PlKBD0ph1e6uPHzIQcv2Z65u2K0kpeByIyAjCmjn1hJgG0Q==} engines: {node: '>=18'} cpu: [mips64el] os: [linux] @@ -2425,8 +2434,8 @@ packages: cpu: [ppc64] os: [linux] - '@esbuild/linux-ppc64@0.25.1': - resolution: {integrity: sha512-/6VBJOwUf3TdTvJZ82qF3tbLuWsscd7/1w+D9LH0W/SqUgM5/JJD0lrJ1fVIfZsqB6RFmLCe0Xz3fmZc3WtyVg==} + '@esbuild/linux-ppc64@0.25.2': + resolution: {integrity: sha512-tsHu2RRSWzipmUi9UBDEzc0nLc4HtpZEI5Ba+Omms5456x5WaNuiG3u7xh5AO6sipnJ9r4cRWQB2tUjPyIkc6g==} engines: {node: '>=18'} cpu: [ppc64] os: [linux] @@ -2461,8 +2470,8 @@ packages: cpu: [riscv64] os: [linux] - '@esbuild/linux-riscv64@0.25.1': - resolution: {integrity: sha512-nSut/Mx5gnilhcq2yIMLMe3Wl4FK5wx/o0QuuCLMtmJn+WeWYoEGDN1ipcN72g1WHsnIbxGXd4i/MF0gTcuAjQ==} + '@esbuild/linux-riscv64@0.25.2': + resolution: {integrity: sha512-k4LtpgV7NJQOml/10uPU0s4SAXGnowi5qBSjaLWMojNCUICNu7TshqHLAEbkBdAszL5TabfvQ48kK84hyFzjnw==} engines: {node: '>=18'} cpu: [riscv64] os: [linux] @@ -2497,8 +2506,8 @@ packages: cpu: [s390x] os: [linux] - '@esbuild/linux-s390x@0.25.1': - resolution: {integrity: sha512-cEECeLlJNfT8kZHqLarDBQso9a27o2Zd2AQ8USAEoGtejOrCYHNtKP8XQhMDJMtthdF4GBmjR2au3x1udADQQQ==} + '@esbuild/linux-s390x@0.25.2': + resolution: {integrity: sha512-GRa4IshOdvKY7M/rDpRR3gkiTNp34M0eLTaC1a08gNrh4u488aPhuZOCpkF6+2wl3zAN7L7XIpOFBhnaE3/Q8Q==} engines: {node: '>=18'} cpu: [s390x] os: [linux] @@ -2533,8 +2542,8 @@ packages: cpu: [x64] os: [linux] - '@esbuild/linux-x64@0.25.1': - resolution: {integrity: sha512-xbfUhu/gnvSEg+EGovRc+kjBAkrvtk38RlerAzQxvMzlB4fXpCFCeUAYzJvrnhFtdeyVCDANSjJvOvGYoeKzFA==} + '@esbuild/linux-x64@0.25.2': + resolution: {integrity: sha512-QInHERlqpTTZ4FRB0fROQWXcYRD64lAoiegezDunLpalZMjcUcld3YzZmVJ2H/Cp0wJRZ8Xtjtj0cEHhYc/uUg==} engines: {node: '>=18'} cpu: [x64] os: [linux] @@ -2545,8 +2554,8 @@ packages: cpu: [arm64] os: [netbsd] - '@esbuild/netbsd-arm64@0.25.1': - resolution: {integrity: sha512-O96poM2XGhLtpTh+s4+nP7YCCAfb4tJNRVZHfIE7dgmax+yMP2WgMd2OecBuaATHKTHsLWHQeuaxMRnCsH8+5g==} + '@esbuild/netbsd-arm64@0.25.2': + resolution: {integrity: sha512-talAIBoY5M8vHc6EeI2WW9d/CkiO9MQJ0IOWX8hrLhxGbro/vBXJvaQXefW2cP0z0nQVTdQ/eNyGFV1GSKrxfw==} engines: {node: '>=18'} cpu: [arm64] os: [netbsd] @@ -2581,8 +2590,8 @@ packages: cpu: [x64] os: [netbsd] - '@esbuild/netbsd-x64@0.25.1': - resolution: {integrity: sha512-X53z6uXip6KFXBQ+Krbx25XHV/NCbzryM6ehOAeAil7X7oa4XIq+394PWGnwaSQ2WRA0KI6PUO6hTO5zeF5ijA==} + '@esbuild/netbsd-x64@0.25.2': + resolution: {integrity: sha512-voZT9Z+tpOxrvfKFyfDYPc4DO4rk06qamv1a/fkuzHpiVBMOhpjK+vBmWM8J1eiB3OLSMFYNaOaBNLXGChf5tg==} engines: {node: '>=18'} cpu: [x64] os: [netbsd] @@ -2599,8 +2608,8 @@ packages: cpu: [arm64] os: [openbsd] - '@esbuild/openbsd-arm64@0.25.1': - resolution: {integrity: sha512-Na9T3szbXezdzM/Kfs3GcRQNjHzM6GzFBeU1/6IV/npKP5ORtp9zbQjvkDJ47s6BCgaAZnnnu/cY1x342+MvZg==} + '@esbuild/openbsd-arm64@0.25.2': + resolution: {integrity: sha512-dcXYOC6NXOqcykeDlwId9kB6OkPUxOEqU+rkrYVqJbK2hagWOMrsTGsMr8+rW02M+d5Op5NNlgMmjzecaRf7Tg==} engines: {node: '>=18'} cpu: [arm64] os: [openbsd] @@ -2635,8 +2644,8 @@ packages: cpu: [x64] os: [openbsd] - '@esbuild/openbsd-x64@0.25.1': - resolution: {integrity: sha512-T3H78X2h1tszfRSf+txbt5aOp/e7TAz3ptVKu9Oyir3IAOFPGV6O9c2naym5TOriy1l0nNf6a4X5UXRZSGX/dw==} + '@esbuild/openbsd-x64@0.25.2': + resolution: {integrity: sha512-t/TkWwahkH0Tsgoq1Ju7QfgGhArkGLkF1uYz8nQS/PPFlXbP5YgRpqQR3ARRiC2iXoLTWFxc6DJMSK10dVXluw==} engines: {node: '>=18'} cpu: [x64] os: [openbsd] @@ -2671,8 +2680,8 @@ packages: cpu: [x64] os: [sunos] - '@esbuild/sunos-x64@0.25.1': - resolution: {integrity: sha512-2H3RUvcmULO7dIE5EWJH8eubZAI4xw54H1ilJnRNZdeo8dTADEZ21w6J22XBkXqGJbe0+wnNJtw3UXRoLJnFEg==} + '@esbuild/sunos-x64@0.25.2': + resolution: {integrity: sha512-cfZH1co2+imVdWCjd+D1gf9NjkchVhhdpgb1q5y6Hcv9TP6Zi9ZG/beI3ig8TvwT9lH9dlxLq5MQBBgwuj4xvA==} engines: {node: '>=18'} cpu: [x64] os: [sunos] @@ -2707,8 +2716,8 @@ packages: cpu: [arm64] os: [win32] - '@esbuild/win32-arm64@0.25.1': - resolution: {integrity: sha512-GE7XvrdOzrb+yVKB9KsRMq+7a2U/K5Cf/8grVFRAGJmfADr/e/ODQ134RK2/eeHqYV5eQRFxb1hY7Nr15fv1NQ==} + '@esbuild/win32-arm64@0.25.2': + resolution: {integrity: sha512-7Loyjh+D/Nx/sOTzV8vfbB3GJuHdOQyrOryFdZvPHLf42Tk9ivBU5Aedi7iyX+x6rbn2Mh68T4qq1SDqJBQO5Q==} engines: {node: '>=18'} cpu: [arm64] os: [win32] @@ -2743,8 +2752,8 @@ packages: cpu: [ia32] os: [win32] - '@esbuild/win32-ia32@0.25.1': - resolution: {integrity: sha512-uOxSJCIcavSiT6UnBhBzE8wy3n0hOkJsBOzy7HDAuTDE++1DJMRRVCPGisULScHL+a/ZwdXPpXD3IyFKjA7K8A==} + '@esbuild/win32-ia32@0.25.2': + resolution: {integrity: sha512-WRJgsz9un0nqZJ4MfhabxaD9Ft8KioqU3JMinOTvobbX6MOSUigSBlogP8QB3uxpJDsFS6yN+3FDBdqE5lg9kg==} engines: {node: '>=18'} cpu: [ia32] os: [win32] @@ -2779,8 +2788,8 @@ packages: cpu: [x64] os: [win32] - '@esbuild/win32-x64@0.25.1': - resolution: {integrity: sha512-Y1EQdcfwMSeQN/ujR5VayLOJ1BHaK+ssyk0AEzPjC+t1lITgsnccPqFjb6V+LsTp/9Iov4ysfjxLaGJ9RPtkVg==} + '@esbuild/win32-x64@0.25.2': + resolution: {integrity: sha512-kM3HKb16VIXZyIeVrM1ygYmZBKybX8N4p754bw390wGO3Tf2j4L2/WYL+4suWujpgf6GBYs3jv7TyUivdd05JA==} engines: {node: '>=18'} cpu: [x64] os: [win32] @@ -4049,25 +4058,25 @@ packages: peerDependencies: react: ^19.0.0 - '@react-router/cloudflare@7.4.0': - resolution: {integrity: sha512-BqJZsmX6Tkkn4Sux4EfLLAW3Lef/Rv5kMHm1GJ53sRBzLJyzlWB/P7l9C9bRD1FHtQFSCjfKQD1hi1tkiVUdfQ==} + '@react-router/cloudflare@7.4.1': + resolution: {integrity: sha512-/lGotnM7eUeufOFp/aHPBccOiejxBV3L9N4BzoA54XbSfcZ6WgC0EVXDWRJZP6reX95bN/pwYg/ClORMA0108g==} engines: {node: '>=20.0.0'} peerDependencies: '@cloudflare/workers-types': ^4.0.0 - react-router: ^7.4.0 + react-router: ^7.4.1 tsup: ^8.3.0 typescript: ^5.1.0 peerDependenciesMeta: typescript: optional: true - '@react-router/dev@7.4.0': - resolution: {integrity: sha512-z3++B3H6k/GyMoR05CUiy2ney5ZxFWJ8YLyVN8wBU2h4aVscqxxVoX9GyrMvjz81VPtrzf0S2iPTJ758ZVmEIg==} + '@react-router/dev@7.4.1': + resolution: {integrity: sha512-poeDaeR0Z3kkRMoUKvoJdjwtik5XGZp+3RGqgowa6SoOubpNHAUMP3nbEbPo672RJWMhsnsaHrEcF2VFao80EA==} engines: {node: '>=20.0.0'} hasBin: true peerDependencies: - '@react-router/serve': ^7.4.0 - react-router: ^7.4.0 + '@react-router/serve': ^7.4.1 + react-router: ^7.4.1 typescript: ^5.1.0 vite: ^5.1.0 || ^6.0.0 wrangler: ^3.28.2 @@ -4084,17 +4093,28 @@ packages: engines: {node: '>=20.0.0'} peerDependencies: express: ^4.17.1 || ^5 - react-router: ^7.4.0 + react-router: ^7.4.1 typescript: ^5.1.0 peerDependenciesMeta: typescript: optional: true - '@react-router/node@7.4.0': - resolution: {integrity: sha512-Y+2CXCPmnxcBbdTNGYO7pDusP+1xSlInbFXhsgjsM5WPH+5aDKHKYmDDrOT7fkg0l3b/SkzfwVsJg5XT9qjb/A==} + '@react-router/express@7.4.1': + resolution: {integrity: sha512-L2JwyDTQqPDBeWzH/wpns1SBM4jmbuAJlY8X6SeoLIA54aiuDaJ6wzrEFh05Oo15xCciZMejFNVp2WnWXrZSRg==} engines: {node: '>=20.0.0'} peerDependencies: - react-router: ^7.4.0 + express: ^4.17.1 || ^5 + react-router: ^7.4.1 + typescript: ^5.1.0 + peerDependenciesMeta: + typescript: + optional: true + + '@react-router/node@7.4.1': + resolution: {integrity: sha512-CLJes6FGylwRnrCDg+nnBlBraD2iuiillx5JDhonIbMajsBJwTc7NVF3AkpNW45S8J0czGGvz19WDIe1cxbAlQ==} + engines: {node: '>=20.0.0'} + peerDependencies: + react-router: ^7.4.1 typescript: ^5.1.0 peerDependenciesMeta: typescript: @@ -4104,18 +4124,18 @@ packages: resolution: {integrity: sha512-j1v41xXhEGUN+/swvK7wU1andoS8dYKBIhONmt8e5J5zNwoJofk/aQW180ARXlLdYRPiR6jr0qh5ak4eKPHF7w==} engines: {node: '>=20.0.0'} peerDependencies: - '@react-router/dev': ^7.4.0 + '@react-router/dev': ^7.4.1 typescript: ^5.1.0 peerDependenciesMeta: typescript: optional: true - '@react-router/serve@7.4.0': - resolution: {integrity: sha512-SvtEDZEkXvfZ40uuUvgwqc/0ZjBvPvHu9o7XS+1hTAFoklYreSw4lCadzs9qRlomDC7Aj/byXseiR9eXi+7Abw==} + '@react-router/serve@7.4.1': + resolution: {integrity: sha512-3yB+Sl0T1lxGTSeNZ+0Z4BApXwI2NR6xh0HfAYk05GhEoAuKh2MYXClgUkaI/qu6elaB0hhcq/XU4wMwJhHOIg==} engines: {node: '>=20.0.0'} hasBin: true peerDependencies: - react-router: ^7.4.0 + react-router: ^7.4.1 '@remix-run/react@2.15.3': resolution: {integrity: sha512-AynCltIk8KLlxV9a+4dORtEMNtF5wJAzBNBZLJMdw3FCJNQZRYQSen8rDnIovOOiz9UNZ2SmBTFERiFMKS16jw==} @@ -4146,8 +4166,8 @@ packages: cpu: [arm] os: [android] - '@rollup/rollup-android-arm-eabi@4.37.0': - resolution: {integrity: sha512-l7StVw6WAa8l3vA1ov80jyetOAEo1FtHvZDbzXDO/02Sq/QVvqlHkYoFwDJPIMj0GKiistsBudfx5tGFnwYWDQ==} + '@rollup/rollup-android-arm-eabi@4.39.0': + resolution: {integrity: sha512-lGVys55Qb00Wvh8DMAocp5kIcaNzEFTmGhfFd88LfaogYTRKrdxgtlO5H6S49v2Nd8R2C6wLOal0qv6/kCkOwA==} cpu: [arm] os: [android] @@ -4156,8 +4176,8 @@ packages: cpu: [arm64] os: [android] - '@rollup/rollup-android-arm64@4.37.0': - resolution: {integrity: sha512-6U3SlVyMxezt8Y+/iEBcbp945uZjJwjZimu76xoG7tO1av9VO691z8PkhzQ85ith2I8R2RddEPeSfcbyPfD4hA==} + '@rollup/rollup-android-arm64@4.39.0': + resolution: {integrity: sha512-It9+M1zE31KWfqh/0cJLrrsCPiF72PoJjIChLX+rEcujVRCb4NLQ5QzFkzIZW8Kn8FTbvGQBY5TkKBau3S8cCQ==} cpu: [arm64] os: [android] @@ -4171,13 +4191,18 @@ packages: cpu: [arm64] os: [darwin] + '@rollup/rollup-darwin-arm64@4.39.0': + resolution: {integrity: sha512-lXQnhpFDOKDXiGxsU9/l8UEGGM65comrQuZ+lDcGUx+9YQ9dKpF3rSEGepyeR5AHZ0b5RgiligsBhWZfSSQh8Q==} + cpu: [arm64] + os: [darwin] + '@rollup/rollup-darwin-x64@4.34.1': resolution: {integrity: sha512-+/2JBrRfISCsWE4aEFXxd+7k9nWGXA8+wh7ZUHn/u8UDXOU9LN+QYKKhd57sIn6WRcorOnlqPMYFIwie/OHXWw==} cpu: [x64] os: [darwin] - '@rollup/rollup-darwin-x64@4.37.0': - resolution: {integrity: sha512-m8W2UbxLDcmRKVjgl5J/k4B8d7qX2EcJve3Sut7YGrQoPtCIQGPH5AMzuFvYRWZi0FVS0zEY4c8uttPfX6bwYQ==} + '@rollup/rollup-darwin-x64@4.39.0': + resolution: {integrity: sha512-mKXpNZLvtEbgu6WCkNij7CGycdw9cJi2k9v0noMb++Vab12GZjFgUXD69ilAbBh034Zwn95c2PNSz9xM7KYEAQ==} cpu: [x64] os: [darwin] @@ -4186,8 +4211,8 @@ packages: cpu: [arm64] os: [freebsd] - '@rollup/rollup-freebsd-arm64@4.37.0': - resolution: {integrity: sha512-FOMXGmH15OmtQWEt174v9P1JqqhlgYge/bUjIbiVD1nI1NeJ30HYT9SJlZMqdo1uQFyt9cz748F1BHghWaDnVA==} + '@rollup/rollup-freebsd-arm64@4.39.0': + resolution: {integrity: sha512-jivRRlh2Lod/KvDZx2zUR+I4iBfHcu2V/BA2vasUtdtTN2Uk3jfcZczLa81ESHZHPHy4ih3T/W5rPFZ/hX7RtQ==} cpu: [arm64] os: [freebsd] @@ -4196,8 +4221,8 @@ packages: cpu: [x64] os: [freebsd] - '@rollup/rollup-freebsd-x64@4.37.0': - resolution: {integrity: sha512-SZMxNttjPKvV14Hjck5t70xS3l63sbVwl98g3FlVVx2YIDmfUIy29jQrsw06ewEYQ8lQSuY9mpAPlmgRD2iSsA==} + '@rollup/rollup-freebsd-x64@4.39.0': + resolution: {integrity: sha512-8RXIWvYIRK9nO+bhVz8DwLBepcptw633gv/QT4015CpJ0Ht8punmoHU/DuEd3iw9Hr8UwUV+t+VNNuZIWYeY7Q==} cpu: [x64] os: [freebsd] @@ -4206,8 +4231,8 @@ packages: cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-gnueabihf@4.37.0': - resolution: {integrity: sha512-hhAALKJPidCwZcj+g+iN+38SIOkhK2a9bqtJR+EtyxrKKSt1ynCBeqrQy31z0oWU6thRZzdx53hVgEbRkuI19w==} + '@rollup/rollup-linux-arm-gnueabihf@4.39.0': + resolution: {integrity: sha512-mz5POx5Zu58f2xAG5RaRRhp3IZDK7zXGk5sdEDj4o96HeaXhlUwmLFzNlc4hCQi5sGdR12VDgEUqVSHer0lI9g==} cpu: [arm] os: [linux] @@ -4216,8 +4241,8 @@ packages: cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.37.0': - resolution: {integrity: sha512-jUb/kmn/Gd8epbHKEqkRAxq5c2EwRt0DqhSGWjPFxLeFvldFdHQs/n8lQ9x85oAeVb6bHcS8irhTJX2FCOd8Ag==} + '@rollup/rollup-linux-arm-musleabihf@4.39.0': + resolution: {integrity: sha512-+YDwhM6gUAyakl0CD+bMFpdmwIoRDzZYaTWV3SDRBGkMU/VpIBYXXEvkEcTagw/7VVkL2vA29zU4UVy1mP0/Yw==} cpu: [arm] os: [linux] @@ -4226,8 +4251,8 @@ packages: cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.37.0': - resolution: {integrity: sha512-oNrJxcQT9IcbcmKlkF+Yz2tmOxZgG9D9GRq+1OE6XCQwCVwxixYAa38Z8qqPzQvzt1FCfmrHX03E0pWoXm1DqA==} + '@rollup/rollup-linux-arm64-gnu@4.39.0': + resolution: {integrity: sha512-EKf7iF7aK36eEChvlgxGnk7pdJfzfQbNvGV/+l98iiMwU23MwvmV0Ty3pJ0p5WQfm3JRHOytSIqD9LB7Bq7xdQ==} cpu: [arm64] os: [linux] @@ -4236,8 +4261,8 @@ packages: cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.37.0': - resolution: {integrity: sha512-pfxLBMls+28Ey2enpX3JvjEjaJMBX5XlPCZNGxj4kdJyHduPBXtxYeb8alo0a7bqOoWZW2uKynhHxF/MWoHaGQ==} + '@rollup/rollup-linux-arm64-musl@4.39.0': + resolution: {integrity: sha512-vYanR6MtqC7Z2SNr8gzVnzUul09Wi1kZqJaek3KcIlI/wq5Xtq4ZPIZ0Mr/st/sv/NnaPwy/D4yXg5x0B3aUUA==} cpu: [arm64] os: [linux] @@ -4246,8 +4271,8 @@ packages: cpu: [loong64] os: [linux] - '@rollup/rollup-linux-loongarch64-gnu@4.37.0': - resolution: {integrity: sha512-yCE0NnutTC/7IGUq/PUHmoeZbIwq3KRh02e9SfFh7Vmc1Z7atuJRYWhRME5fKgT8aS20mwi1RyChA23qSyRGpA==} + '@rollup/rollup-linux-loongarch64-gnu@4.39.0': + resolution: {integrity: sha512-NMRUT40+h0FBa5fb+cpxtZoGAggRem16ocVKIv5gDB5uLDgBIwrIsXlGqYbLwW8YyO3WVTk1FkFDjMETYlDqiw==} cpu: [loong64] os: [linux] @@ -4256,8 +4281,8 @@ packages: cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.37.0': - resolution: {integrity: sha512-NxcICptHk06E2Lh3a4Pu+2PEdZ6ahNHuK7o6Np9zcWkrBMuv21j10SQDJW3C9Yf/A/P7cutWoC/DptNLVsZ0VQ==} + '@rollup/rollup-linux-powerpc64le-gnu@4.39.0': + resolution: {integrity: sha512-0pCNnmxgduJ3YRt+D+kJ6Ai/r+TaePu9ZLENl+ZDV/CdVczXl95CbIiwwswu4L+K7uOIGf6tMo2vm8uadRaICQ==} cpu: [ppc64] os: [linux] @@ -4266,13 +4291,13 @@ packages: cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.37.0': - resolution: {integrity: sha512-PpWwHMPCVpFZLTfLq7EWJWvrmEuLdGn1GMYcm5MV7PaRgwCEYJAwiN94uBuZev0/J/hFIIJCsYw4nLmXA9J7Pw==} + '@rollup/rollup-linux-riscv64-gnu@4.39.0': + resolution: {integrity: sha512-t7j5Zhr7S4bBtksT73bO6c3Qa2AV/HqiGlj9+KB3gNF5upcVkx+HLgxTm8DK4OkzsOYqbdqbLKwvGMhylJCPhQ==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-riscv64-musl@4.37.0': - resolution: {integrity: sha512-DTNwl6a3CfhGTAOYZ4KtYbdS8b+275LSLqJVJIrPa5/JuIufWWZ/QFvkxp52gpmguN95eujrM68ZG+zVxa8zHA==} + '@rollup/rollup-linux-riscv64-musl@4.39.0': + resolution: {integrity: sha512-m6cwI86IvQ7M93MQ2RF5SP8tUjD39Y7rjb1qjHgYh28uAPVU8+k/xYWvxRO3/tBN2pZkSMa5RjnPuUIbrwVxeA==} cpu: [riscv64] os: [linux] @@ -4281,8 +4306,8 @@ packages: cpu: [s390x] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.37.0': - resolution: {integrity: sha512-hZDDU5fgWvDdHFuExN1gBOhCuzo/8TMpidfOR+1cPZJflcEzXdCy1LjnklQdW8/Et9sryOPJAKAQRw8Jq7Tg+A==} + '@rollup/rollup-linux-s390x-gnu@4.39.0': + resolution: {integrity: sha512-iRDJd2ebMunnk2rsSBYlsptCyuINvxUfGwOUldjv5M4tpa93K8tFMeYGpNk2+Nxl+OBJnBzy2/JCscGeO507kA==} cpu: [s390x] os: [linux] @@ -4296,13 +4321,18 @@ packages: cpu: [x64] os: [linux] + '@rollup/rollup-linux-x64-gnu@4.39.0': + resolution: {integrity: sha512-t9jqYw27R6Lx0XKfEFe5vUeEJ5pF3SGIM6gTfONSMb7DuG6z6wfj2yjcoZxHg129veTqU7+wOhY6GX8wmf90dA==} + cpu: [x64] + os: [linux] + '@rollup/rollup-linux-x64-musl@4.34.1': resolution: {integrity: sha512-jqtKrO715hDlvUcEsPn55tZt2TEiBvBtCMkUuU0R6fO/WPT7lO9AONjPbd8II7/asSiNVQHCMn4OLGigSuxVQA==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.37.0': - resolution: {integrity: sha512-E2lPrLKE8sQbY/2bEkVTGDEk4/49UYRVWgj90MY8yPjpnGBQ+Xi1Qnr7b7UIWw1NOggdFQFOLZ8+5CzCiz143w==} + '@rollup/rollup-linux-x64-musl@4.39.0': + resolution: {integrity: sha512-ThFdkrFDP55AIsIZDKSBWEt/JcWlCzydbZHinZ0F/r1h83qbGeenCt/G/wG2O0reuENDD2tawfAj2s8VK7Bugg==} cpu: [x64] os: [linux] @@ -4311,8 +4341,8 @@ packages: cpu: [arm64] os: [win32] - '@rollup/rollup-win32-arm64-msvc@4.37.0': - resolution: {integrity: sha512-Jm7biMazjNzTU4PrQtr7VS8ibeys9Pn29/1bm4ph7CP2kf21950LgN+BaE2mJ1QujnvOc6p54eWWiVvn05SOBg==} + '@rollup/rollup-win32-arm64-msvc@4.39.0': + resolution: {integrity: sha512-jDrLm6yUtbOg2TYB3sBF3acUnAwsIksEYjLeHL+TJv9jg+TmTwdyjnDex27jqEMakNKf3RwwPahDIt7QXCSqRQ==} cpu: [arm64] os: [win32] @@ -4321,8 +4351,8 @@ packages: cpu: [ia32] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.37.0': - resolution: {integrity: sha512-e3/1SFm1OjefWICB2Ucstg2dxYDkDTZGDYgwufcbsxTHyqQps1UQf33dFEChBNmeSsTOyrjw2JJq0zbG5GF6RA==} + '@rollup/rollup-win32-ia32-msvc@4.39.0': + resolution: {integrity: sha512-6w9uMuza+LbLCVoNKL5FSLE7yvYkq9laSd09bwS0tMjkwXrmib/4KmoJcrKhLWHvw19mwU+33ndC69T7weNNjQ==} cpu: [ia32] os: [win32] @@ -4331,8 +4361,8 @@ packages: cpu: [x64] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.37.0': - resolution: {integrity: sha512-LWbXUBwn/bcLx2sSsqy7pK5o+Nr+VCoRoAohfJ5C/aBio9nfJmGQqHAhU6pwxV/RmyTk5AqdySma7uwWGlmeuA==} + '@rollup/rollup-win32-x64-msvc@4.39.0': + resolution: {integrity: sha512-yAkUOkIKZlK5dl7u6dg897doBgLXmUHhIINM2c+sND3DZwnrdQkkSiDh7N75Ll4mM4dxSkYfXqU9fW3lLkMFug==} cpu: [x64] os: [win32] @@ -4341,8 +4371,8 @@ packages: engines: {node: '>=16.7.0'} hasBin: true - '@rsbuild/core@1.3.0-beta.2': - resolution: {integrity: sha512-/gcHzROIZp12s/WkTvWNU3cyCZzvRop9/6o4WdXRR1sbxa6TZXQ/rMzmdM/upVnx2mwstvO+3vByrQbgZ7B7SA==} + '@rsbuild/core@1.3.2': + resolution: {integrity: sha512-PVs3I8QKzNr8Uo0kToPliMZdlX6HZkmMvXUgD71rqc14secPtnhlTENmaXLm0jNmSpF3AJRGiYmhTrYXk7/+2Q==} engines: {node: '>=16.7.0'} hasBin: true @@ -4411,8 +4441,8 @@ packages: cpu: [arm64] os: [darwin] - '@rspack/binding-darwin-arm64@1.3.0-beta.1': - resolution: {integrity: sha512-bOKW/m9Ggmes1lXFsM0nxgYqKVlc1rg+bw8/wXS2Iyq0nQaW1FVO3LYCAaj3yYaOjmB7oSwd1Rd7mcInof010w==} + '@rspack/binding-darwin-arm64@1.3.1': + resolution: {integrity: sha512-snZUgFUxREARRcBvE4dyTbg73pWbSvAD09ouJsnxdnws2g3fZW8qlXi5AuGwL6bLR4jcfOSSafHJxvHexFaxJw==} cpu: [arm64] os: [darwin] @@ -4421,8 +4451,8 @@ packages: cpu: [x64] os: [darwin] - '@rspack/binding-darwin-x64@1.3.0-beta.1': - resolution: {integrity: sha512-XRnhgzYrjWgGHqyoAJ1s/fDxygEGej0JCJMVPHTDCHDbtt+TnAoqmcP/2MxVsf9HYdKZzTRT2VcBnPy7R2m9yQ==} + '@rspack/binding-darwin-x64@1.3.1': + resolution: {integrity: sha512-ZIowFcY7yU1qNffyaqpN7zzNKUwdBi2o9pfgX2IdYpXpiQkYIoxwGQz44bgJNtGVkVijnJQ+T2sVbt9gGL6vQw==} cpu: [x64] os: [darwin] @@ -4431,8 +4461,8 @@ packages: cpu: [arm64] os: [linux] - '@rspack/binding-linux-arm64-gnu@1.3.0-beta.1': - resolution: {integrity: sha512-GzkbSVRpeAoiLIoYnAc21dAvS0Nc07x4JPczkSx/SVQRzPUfflJOMC/k6i541405E7/1Am/IVlg/WtNhA4aVTA==} + '@rspack/binding-linux-arm64-gnu@1.3.1': + resolution: {integrity: sha512-i4l+BpesuIIE4kq4tjar1uVFPcIODlBW/+yhxIx8iZlLpmHJGSs/+jlCJdg78DA67C75+HKxiSHjYM4mafrm5g==} cpu: [arm64] os: [linux] @@ -4441,8 +4471,8 @@ packages: cpu: [arm64] os: [linux] - '@rspack/binding-linux-arm64-musl@1.3.0-beta.1': - resolution: {integrity: sha512-eo1EVtr9JGwy5HKTo+KaiIGJpD8boo5325XO/it8H+1abcXV8mPq4h0P/tUs4N2yxV2iI537p2JqmXoPL1Wnmw==} + '@rspack/binding-linux-arm64-musl@1.3.1': + resolution: {integrity: sha512-wDB5jYTLlKpiy6uzciazLLlaFrp/yRdLmXZRl3uYuoQYvmOHUV05F8kIchiR9FXlwwdXDZXcclvWrwg9DHKWEg==} cpu: [arm64] os: [linux] @@ -4451,8 +4481,8 @@ packages: cpu: [x64] os: [linux] - '@rspack/binding-linux-x64-gnu@1.3.0-beta.1': - resolution: {integrity: sha512-z880gep+twGC+znanuyW7PRKP2Y5dDdERWTLBUEYF9EEpup6nXEXw7GunfcrAeDdRpCi13Mr/iMUlqH2qfwkmQ==} + '@rspack/binding-linux-x64-gnu@1.3.1': + resolution: {integrity: sha512-RNxBFIHCg9xBKai3SKzAlr5G2/socYaqu97XexA+PCE5G0h+HxgYDq4b4lcZ58fJJGBk5vZqWOQTOT6BnXUpAg==} cpu: [x64] os: [linux] @@ -4461,8 +4491,8 @@ packages: cpu: [x64] os: [linux] - '@rspack/binding-linux-x64-musl@1.3.0-beta.1': - resolution: {integrity: sha512-BQXI7OlAyuBd7Ir8v81h6BBIJOqT7HGLtkJY88in8QO60uWjpuxYZuh2A4Ox8oAg2+XNXXfmVhzlx9UxC5PoJQ==} + '@rspack/binding-linux-x64-musl@1.3.1': + resolution: {integrity: sha512-4YTtinpV/wphgSolMerIyXc+WUb6NjYy2Txt/OqwMI+yoDkAvd2+DSFVTbq9pYRG4j3PDbRTx1Pcf4cchJUWBA==} cpu: [x64] os: [linux] @@ -4471,8 +4501,8 @@ packages: cpu: [arm64] os: [win32] - '@rspack/binding-win32-arm64-msvc@1.3.0-beta.1': - resolution: {integrity: sha512-R5v3P/NC5HHRjG/fA+kg+S0DNpmR+W6cB/7UU6tjsoQ30gukSN62MuMbcXUTXOsbIBnraWfjDOJ78pnQH9Q1AQ==} + '@rspack/binding-win32-arm64-msvc@1.3.1': + resolution: {integrity: sha512-URjt3mWPUbTbmdZwrZrFlFjovzKIJaFIS5CvsuXh4UYhdYZBUywgd5tmQ4kaM0XeqcQHStXpsObRz8g4oxCgJQ==} cpu: [arm64] os: [win32] @@ -4481,8 +4511,8 @@ packages: cpu: [ia32] os: [win32] - '@rspack/binding-win32-ia32-msvc@1.3.0-beta.1': - resolution: {integrity: sha512-mWx70lbAXbN76Oue8vDvmi6T7gM1IsdWJvUuO8sxw5sNLXJtilvexhzq7RzzpOHZKa/2hJOV5PjQcYsHr5zYew==} + '@rspack/binding-win32-ia32-msvc@1.3.1': + resolution: {integrity: sha512-Yp2z0SmG7VxYapyNLudwDG3p9HWoV7nWObAZhObepf3mHe/pkEm6qYK9IF0EylfOZvgii6gMau775F6Ptc/4kQ==} cpu: [ia32] os: [win32] @@ -4491,16 +4521,16 @@ packages: cpu: [x64] os: [win32] - '@rspack/binding-win32-x64-msvc@1.3.0-beta.1': - resolution: {integrity: sha512-es2DZL4Mg2vJn3atfleQoCZbWgXXB424ENWCg54DVtA3tUbvx+du2j2ygCpnXF6/ITLgA3dSZnQR6Kh4SEQXvQ==} + '@rspack/binding-win32-x64-msvc@1.3.1': + resolution: {integrity: sha512-FxzzdMmazS/NzOLcySsTf6YehAvbhPzFt6praHgw9VyzP51I7/n8qS3KAh+HgPLKj0PNQibDcL/k2ApgMEQdvQ==} cpu: [x64] os: [win32] '@rspack/binding@1.2.8': resolution: {integrity: sha512-T3FMB3N9P1AbSAryfkSRJkPtmeSYs/Gj9zUZoPz1ckPEIcWZmpUOQbJylldjbw5waxtCL1haHNbi0pcSvxiaJw==} - '@rspack/binding@1.3.0-beta.1': - resolution: {integrity: sha512-2jJTKGb1XprTNa/COYRuvd0TOJSiOf6eOtoKj1of5YZA5doIsht8RhI63RahCxoIJZlNv99jwhbtIGVcfi3YAg==} + '@rspack/binding@1.3.1': + resolution: {integrity: sha512-9r7rRWKU6xACpOFgFnrjkBDu8Cx+Xy8KD26N9FI/CKvBhbQe4vIkXNKktH/oCWCLJF0cTD8O38BmVXpYvl0uNw==} '@rspack/core@1.2.8': resolution: {integrity: sha512-ppj3uQQtkhgrYDLrUqb33YbpNEZCpAudpfVuOHGsvUrAnu1PijbfJJymoA5ZvUhM+HNMvPI5D1ie97TXyb0UVg==} @@ -4514,8 +4544,8 @@ packages: '@swc/helpers': optional: true - '@rspack/core@1.3.0-beta.1': - resolution: {integrity: sha512-oWT+zkZ7cgZ6M6yyAjM4cETz5qOZ6f8UEmhlOndM9pxiMtRfWWbgW1U9qxN4sOlZTU3D0K9C1aBj7u5IFD2i0w==} + '@rspack/core@1.3.1': + resolution: {integrity: sha512-g+wz28rejN+Rw/KMM3HZ3Z1W2qnXXFsUUTJnIoX4GVryIdoILfwSMVWuGELo15LHAwpBI/1twOeL4Cqx5lMtvw==} engines: {node: '>=16.0.0'} peerDependencies: '@rspack/tracing': ^1.x @@ -4888,8 +4918,8 @@ packages: '@types/node@22.13.1': resolution: {integrity: sha512-jK8uzQlrvXqEU91UxiK5J7pKHyzgnI1Qnl0QDHIgVGuolJhRb9EEl28Cj9b3rGR8B2lhFCtvIm5os8lFnO/1Ew==} - '@types/node@22.13.13': - resolution: {integrity: sha512-ClsL5nMwKaBRwPcCvH8E7+nU4GxHVx1axNvMZTFHMEfNI7oahimt26P5zjVCRrjiIWj6YFXfE1v3dEp94wLcGQ==} + '@types/node@22.14.0': + resolution: {integrity: sha512-Kmpl+z84ILoG+3T/zQFyAJsU6EPTmOCj8/2+83fSN6djd6I4o7uOuGIH6vq3PrjY5BGitSbFuMN18j3iknubbA==} '@types/parse-json@4.0.2': resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} @@ -5427,6 +5457,9 @@ packages: resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==} engines: {node: '>=0.6'} + big.js@5.2.2: + resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} + binary-extensions@2.3.0: resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} engines: {node: '>=8'} @@ -5675,10 +5708,6 @@ packages: resolution: {integrity: sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q==} engines: {node: '>= 0.8.0'} - compression@1.8.0: - resolution: {integrity: sha512-k6WLKfunuqCYD3t6AsuPGvQWaKwuLLh2/xHNcX4qE+vIfDNXpSqnrhwA7O53R7WVQUnt8dVAIW+YHr7xTgOgGA==} - engines: {node: '>= 0.8.0'} - concat-map@0.0.1: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} @@ -6108,6 +6137,10 @@ packages: emoji-regex@9.2.2: resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + emojis-list@3.0.0: + resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} + engines: {node: '>= 4'} + encodeurl@1.0.2: resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} engines: {node: '>= 0.8'} @@ -6226,8 +6259,8 @@ packages: engines: {node: '>=18'} hasBin: true - esbuild@0.25.1: - resolution: {integrity: sha512-BGO5LtrGC7vxnqucAe/rmvKdJllfGaYWdyABvyMoXQlfYMb2bbRuReWR5tEGE//4LcNJj9XrkovTqNYRFZHAMQ==} + esbuild@0.25.2: + resolution: {integrity: sha512-16854zccKPnC+toMywC+uKNeYSv+/eXkevRAfwRD/G9Cleq66m8XFIrigkbvauLLlCfDL45Q2cWegSg53gGBnQ==} engines: {node: '>=18'} hasBin: true @@ -7315,6 +7348,10 @@ packages: resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} engines: {node: '>=6.11.5'} + loader-utils@2.0.4: + resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} + engines: {node: '>=8.9.0'} + locate-path@5.0.0: resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} engines: {node: '>=8'} @@ -7697,6 +7734,9 @@ packages: nwsapi@2.2.19: resolution: {integrity: sha512-94bcyI3RsqiZufXjkr3ltkI86iEl+I7uiHVDtcq9wJUTwYQJ5odHDeSzkkrRzi80jJ8MaeZgqKjH1bAWAFw9bA==} + nwsapi@2.2.20: + resolution: {integrity: sha512-/ieB+mDe4MrrKMT8z+mQL8klXydZWGR5Dowt4RAGKbJ3kIGEx3X4ljUo+6V73IXtUPWgfOlU5B9MlGxFO5T+cA==} + object-assign@4.1.1: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} @@ -8319,18 +8359,18 @@ packages: peerDependencies: react: ^19.0.0 react-dom: ^19.0.0 - react-router: ^7.4.0 + react-router: ^7.4.1 vite: '>=5.0.0 || >=6.0.0' - react-router-dom@7.4.0: - resolution: {integrity: sha512-VlksBPf3n2bijPvnA7nkTsXxMAKOj+bWp4R9c3i+bnwlSOFAGOkJkKhzy/OsRkWaBMICqcAl1JDzh9ZSOze9CA==} + react-router-dom@7.4.1: + resolution: {integrity: sha512-L3/4tig0Lvs6m6THK0HRV4eHUdpx0dlJasgCxXKnavwhh4tKYgpuZk75HRYNoRKDyDWi9QgzGXsQ1oQSBlWpAA==} engines: {node: '>=20.0.0'} peerDependencies: react: ^19.0.0 react-dom: ^19.0.0 - react-router@7.4.0: - resolution: {integrity: sha512-Y2g5ObjkvX3VFeVt+0CIPuYd9PpgqCslG7ASSIdN73LwA1nNWzcMLaoMRJfP3prZFI92svxFwbn7XkLJ+UPQ6A==} + react-router@7.4.1: + resolution: {integrity: sha512-Vmizn9ZNzxfh3cumddqv3kLOKvc7AskUT0dC1prTabhiEi0U4A33LmkDOJ79tXaeSqCqMBXBU/ySX88W85+EUg==} engines: {node: '>=20.0.0'} peerDependencies: react: ^19.0.0 @@ -8423,7 +8463,7 @@ packages: engines: {node: '>=16.6.0'} hasBin: true peerDependencies: - react-router: ^7.4.0 + react-router: ^7.4.1 peerDependenciesMeta: react-router: optional: true @@ -8437,7 +8477,7 @@ packages: intl-parse-accept-language: ^1.0.0 is-ip: ^5.0.1 react: ^19.0.0 - react-router: ^7.4.0 + react-router: ^7.4.1 zod: ^3.22.4 peerDependenciesMeta: '@oslojs/crypto': @@ -8543,8 +8583,8 @@ packages: engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true - rollup@4.37.0: - resolution: {integrity: sha512-iAtQy/L4QFU+rTJ1YUjXqJOJzuwEghqWzCEYD2FEghT7Gsy1VdABntrO4CLopA5IkflTyqNiLNwPcOJ3S7UKLg==} + rollup@4.39.0: + resolution: {integrity: sha512-thI8kNc02yNvnmJp8dr3fNWJ9tCONDhp6TV35X6HkKGGs9E6q7YWCHbe5vKiTa7TAiNcFEmXKj3X/pG2b3ci0g==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true @@ -8872,6 +8912,11 @@ packages: strict-event-emitter@0.5.1: resolution: {integrity: sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==} + string-replace-loader@3.1.0: + resolution: {integrity: sha512-5AOMUZeX5HE/ylKDnEa/KKBqvlnFmRZudSOjVJHxhoJg9QYTwl1rECx7SLR8BBH7tfxb4Rp7EM2XVfQFxIhsbQ==} + peerDependencies: + webpack: ^5 + string-width@4.2.3: resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} engines: {node: '>=8'} @@ -9027,6 +9072,9 @@ packages: resolution: {integrity: sha512-pFYqmTw68LXVjeWJMST4+borgQP2AyMNbg1BpZh9LbyhUeNkeaPF9gzfPGUAnSMV3qPYdWUwDIjjCLiSDOl7vg==} engines: {node: '>=18'} + text-encoder-lite@2.0.0: + resolution: {integrity: sha512-bo08ND8LlBwPeU23EluRUcO3p2Rsb/eN5EIfOVqfRmblNDEVKK5IzM9Qfidvo+odT0hhV8mpXQcP/M5MMzABXw==} + thenify-all@1.6.0: resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} engines: {node: '>=0.8'} @@ -9186,8 +9234,8 @@ packages: resolution: {integrity: sha512-S/5/0kFftkq27FPNye0XM1e2NsnoD/3FS+pBmbjmmtLT6I+i344KoOf7pvXreaFsDamWeaJX55nczA1m5PsBDg==} engines: {node: '>=16'} - type-fest@4.38.0: - resolution: {integrity: sha512-2dBz5D5ycHIoliLYLi0Q2V7KRaDlH0uWIvmk7TYlAg5slqwiPv1ezJdZm1QEM0xgk29oYWMCbIG7E6gHpvChlg==} + type-fest@4.39.0: + resolution: {integrity: sha512-w2IGJU1tIgcrepg9ZJ82d8UmItNQtOFJG0HCUE3SzMokKkTsruVDALl2fAdiEzJlfduoU+VyXJWIIUZ+6jV+nw==} engines: {node: '>=16'} type-is@1.6.18: @@ -9238,6 +9286,9 @@ packages: undici-types@6.20.0: resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==} + undici-types@6.21.0: + resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} + undici@5.28.5: resolution: {integrity: sha512-zICwjrDrcrUE0pyyJc1I2QzBkLM8FINsgOrt6WjA+BgajVq9Nxu2PbFFXUrAggLfDXlZGZBVZYw7WNV5KiBiBA==} engines: {node: '>=14.0'} @@ -9917,8 +9968,8 @@ snapshots: '@babel/helper-module-imports@7.25.9': dependencies: - '@babel/traverse': 7.26.7 - '@babel/types': 7.26.7 + '@babel/traverse': 7.26.10 + '@babel/types': 7.26.10 transitivePeerDependencies: - supports-color @@ -10495,7 +10546,7 @@ snapshots: '@esbuild/aix-ppc64@0.24.2': optional: true - '@esbuild/aix-ppc64@0.25.1': + '@esbuild/aix-ppc64@0.25.2': optional: true '@esbuild/android-arm64@0.17.19': @@ -10513,7 +10564,7 @@ snapshots: '@esbuild/android-arm64@0.24.2': optional: true - '@esbuild/android-arm64@0.25.1': + '@esbuild/android-arm64@0.25.2': optional: true '@esbuild/android-arm@0.17.19': @@ -10531,7 +10582,7 @@ snapshots: '@esbuild/android-arm@0.24.2': optional: true - '@esbuild/android-arm@0.25.1': + '@esbuild/android-arm@0.25.2': optional: true '@esbuild/android-x64@0.17.19': @@ -10549,7 +10600,7 @@ snapshots: '@esbuild/android-x64@0.24.2': optional: true - '@esbuild/android-x64@0.25.1': + '@esbuild/android-x64@0.25.2': optional: true '@esbuild/darwin-arm64@0.17.19': @@ -10567,7 +10618,7 @@ snapshots: '@esbuild/darwin-arm64@0.24.2': optional: true - '@esbuild/darwin-arm64@0.25.1': + '@esbuild/darwin-arm64@0.25.2': optional: true '@esbuild/darwin-x64@0.17.19': @@ -10585,7 +10636,7 @@ snapshots: '@esbuild/darwin-x64@0.24.2': optional: true - '@esbuild/darwin-x64@0.25.1': + '@esbuild/darwin-x64@0.25.2': optional: true '@esbuild/freebsd-arm64@0.17.19': @@ -10603,7 +10654,7 @@ snapshots: '@esbuild/freebsd-arm64@0.24.2': optional: true - '@esbuild/freebsd-arm64@0.25.1': + '@esbuild/freebsd-arm64@0.25.2': optional: true '@esbuild/freebsd-x64@0.17.19': @@ -10621,7 +10672,7 @@ snapshots: '@esbuild/freebsd-x64@0.24.2': optional: true - '@esbuild/freebsd-x64@0.25.1': + '@esbuild/freebsd-x64@0.25.2': optional: true '@esbuild/linux-arm64@0.17.19': @@ -10639,7 +10690,7 @@ snapshots: '@esbuild/linux-arm64@0.24.2': optional: true - '@esbuild/linux-arm64@0.25.1': + '@esbuild/linux-arm64@0.25.2': optional: true '@esbuild/linux-arm@0.17.19': @@ -10657,7 +10708,7 @@ snapshots: '@esbuild/linux-arm@0.24.2': optional: true - '@esbuild/linux-arm@0.25.1': + '@esbuild/linux-arm@0.25.2': optional: true '@esbuild/linux-ia32@0.17.19': @@ -10675,7 +10726,7 @@ snapshots: '@esbuild/linux-ia32@0.24.2': optional: true - '@esbuild/linux-ia32@0.25.1': + '@esbuild/linux-ia32@0.25.2': optional: true '@esbuild/linux-loong64@0.17.19': @@ -10693,7 +10744,7 @@ snapshots: '@esbuild/linux-loong64@0.24.2': optional: true - '@esbuild/linux-loong64@0.25.1': + '@esbuild/linux-loong64@0.25.2': optional: true '@esbuild/linux-mips64el@0.17.19': @@ -10711,7 +10762,7 @@ snapshots: '@esbuild/linux-mips64el@0.24.2': optional: true - '@esbuild/linux-mips64el@0.25.1': + '@esbuild/linux-mips64el@0.25.2': optional: true '@esbuild/linux-ppc64@0.17.19': @@ -10729,7 +10780,7 @@ snapshots: '@esbuild/linux-ppc64@0.24.2': optional: true - '@esbuild/linux-ppc64@0.25.1': + '@esbuild/linux-ppc64@0.25.2': optional: true '@esbuild/linux-riscv64@0.17.19': @@ -10747,7 +10798,7 @@ snapshots: '@esbuild/linux-riscv64@0.24.2': optional: true - '@esbuild/linux-riscv64@0.25.1': + '@esbuild/linux-riscv64@0.25.2': optional: true '@esbuild/linux-s390x@0.17.19': @@ -10765,7 +10816,7 @@ snapshots: '@esbuild/linux-s390x@0.24.2': optional: true - '@esbuild/linux-s390x@0.25.1': + '@esbuild/linux-s390x@0.25.2': optional: true '@esbuild/linux-x64@0.17.19': @@ -10783,13 +10834,13 @@ snapshots: '@esbuild/linux-x64@0.24.2': optional: true - '@esbuild/linux-x64@0.25.1': + '@esbuild/linux-x64@0.25.2': optional: true '@esbuild/netbsd-arm64@0.24.2': optional: true - '@esbuild/netbsd-arm64@0.25.1': + '@esbuild/netbsd-arm64@0.25.2': optional: true '@esbuild/netbsd-x64@0.17.19': @@ -10807,7 +10858,7 @@ snapshots: '@esbuild/netbsd-x64@0.24.2': optional: true - '@esbuild/netbsd-x64@0.25.1': + '@esbuild/netbsd-x64@0.25.2': optional: true '@esbuild/openbsd-arm64@0.23.1': @@ -10816,7 +10867,7 @@ snapshots: '@esbuild/openbsd-arm64@0.24.2': optional: true - '@esbuild/openbsd-arm64@0.25.1': + '@esbuild/openbsd-arm64@0.25.2': optional: true '@esbuild/openbsd-x64@0.17.19': @@ -10834,7 +10885,7 @@ snapshots: '@esbuild/openbsd-x64@0.24.2': optional: true - '@esbuild/openbsd-x64@0.25.1': + '@esbuild/openbsd-x64@0.25.2': optional: true '@esbuild/sunos-x64@0.17.19': @@ -10852,7 +10903,7 @@ snapshots: '@esbuild/sunos-x64@0.24.2': optional: true - '@esbuild/sunos-x64@0.25.1': + '@esbuild/sunos-x64@0.25.2': optional: true '@esbuild/win32-arm64@0.17.19': @@ -10870,7 +10921,7 @@ snapshots: '@esbuild/win32-arm64@0.24.2': optional: true - '@esbuild/win32-arm64@0.25.1': + '@esbuild/win32-arm64@0.25.2': optional: true '@esbuild/win32-ia32@0.17.19': @@ -10888,7 +10939,7 @@ snapshots: '@esbuild/win32-ia32@0.24.2': optional: true - '@esbuild/win32-ia32@0.25.1': + '@esbuild/win32-ia32@0.25.2': optional: true '@esbuild/win32-x64@0.17.19': @@ -10906,7 +10957,7 @@ snapshots: '@esbuild/win32-x64@0.24.2': optional: true - '@esbuild/win32-x64@0.25.1': + '@esbuild/win32-x64@0.25.2': optional: true '@eslint-community/eslint-utils@4.5.1(eslint@9.19.0(jiti@2.4.2))': @@ -11122,7 +11173,7 @@ snapshots: - supports-color - utf-8-validate - '@module-federation/enhanced@0.0.0-next-20250321011937(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3)(webpack@5.97.1(esbuild@0.24.2))': + '@module-federation/enhanced@0.0.0-next-20250321011937(@rspack/core@1.3.1(@swc/helpers@0.5.15))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3)(webpack@5.97.1(esbuild@0.24.2))': dependencies: '@module-federation/bridge-react-webpack-plugin': 0.0.0-next-20250321011937 '@module-federation/data-prefetch': 0.0.0-next-20250321011937(react-dom@19.0.0(react@19.0.0))(react@19.0.0) @@ -11131,7 +11182,7 @@ snapshots: '@module-federation/inject-external-runtime-core-plugin': 0.0.0-next-20250321011937(@module-federation/runtime-tools@0.0.0-next-20250321011937) '@module-federation/managers': 0.0.0-next-20250321011937 '@module-federation/manifest': 0.0.0-next-20250321011937(typescript@5.7.3) - '@module-federation/rspack': 0.0.0-next-20250321011937(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(typescript@5.7.3) + '@module-federation/rspack': 0.0.0-next-20250321011937(@rspack/core@1.3.1(@swc/helpers@0.5.15))(typescript@5.7.3) '@module-federation/runtime-tools': 0.0.0-next-20250321011937 '@module-federation/sdk': 0.0.0-next-20250321011937 btoa: 1.2.1 @@ -11179,9 +11230,9 @@ snapshots: - utf-8-validate - vue-tsc - '@module-federation/node@0.0.0-next-20250321011937(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3)(webpack@5.97.1(esbuild@0.24.2))': + '@module-federation/node@0.0.0-next-20250321011937(@rspack/core@1.3.1(@swc/helpers@0.5.15))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3)(webpack@5.97.1(esbuild@0.24.2))': dependencies: - '@module-federation/enhanced': 0.0.0-next-20250321011937(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3)(webpack@5.97.1(esbuild@0.24.2)) + '@module-federation/enhanced': 0.0.0-next-20250321011937(@rspack/core@1.3.1(@swc/helpers@0.5.15))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3)(webpack@5.97.1(esbuild@0.24.2)) '@module-federation/runtime': 0.0.0-next-20250321011937 '@module-federation/sdk': 0.0.0-next-20250321011937 '@module-federation/utilities': 0.0.0-next-20250321011937(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(webpack@5.97.1(esbuild@0.24.2)) @@ -11201,12 +11252,12 @@ snapshots: - utf-8-validate - vue-tsc - '@module-federation/rsbuild-plugin@0.0.0-next-20250321011937(@rsbuild/core@1.3.0-beta.2)(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3)(webpack@5.97.1(esbuild@0.24.2))': + '@module-federation/rsbuild-plugin@0.0.0-next-20250321011937(@rsbuild/core@1.3.2)(@rspack/core@1.3.1(@swc/helpers@0.5.15))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3)(webpack@5.97.1(esbuild@0.24.2))': dependencies: - '@module-federation/enhanced': 0.0.0-next-20250321011937(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3)(webpack@5.97.1(esbuild@0.24.2)) + '@module-federation/enhanced': 0.0.0-next-20250321011937(@rspack/core@1.3.1(@swc/helpers@0.5.15))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.7.3)(webpack@5.97.1(esbuild@0.24.2)) '@module-federation/sdk': 0.0.0-next-20250321011937 optionalDependencies: - '@rsbuild/core': 1.3.0-beta.2 + '@rsbuild/core': 1.3.2 transitivePeerDependencies: - '@rspack/core' - bufferutil @@ -11219,7 +11270,7 @@ snapshots: - vue-tsc - webpack - '@module-federation/rspack@0.0.0-next-20250321011937(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(typescript@5.7.3)': + '@module-federation/rspack@0.0.0-next-20250321011937(@rspack/core@1.3.1(@swc/helpers@0.5.15))(typescript@5.7.3)': dependencies: '@module-federation/bridge-react-webpack-plugin': 0.0.0-next-20250321011937 '@module-federation/dts-plugin': 0.0.0-next-20250321011937(typescript@5.7.3) @@ -11228,7 +11279,7 @@ snapshots: '@module-federation/manifest': 0.0.0-next-20250321011937(typescript@5.7.3) '@module-federation/runtime-tools': 0.0.0-next-20250321011937 '@module-federation/sdk': 0.0.0-next-20250321011937 - '@rspack/core': 1.3.0-beta.1(@swc/helpers@0.5.15) + '@rspack/core': 1.3.1(@swc/helpers@0.5.15) btoa: 1.2.1 optionalDependencies: typescript: 5.7.3 @@ -12339,15 +12390,15 @@ snapshots: dependencies: react: 19.0.0 - '@react-router/cloudflare@7.4.0(@cloudflare/workers-types@4.20250129.0)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(tsup@8.3.6(jiti@2.4.2)(postcss@8.5.3)(tsx@4.19.3)(typescript@5.7.3)(yaml@2.7.0))(typescript@5.7.3)': + '@react-router/cloudflare@7.4.1(@cloudflare/workers-types@4.20250129.0)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(tsup@8.3.6(jiti@2.4.2)(postcss@8.5.3)(tsx@4.19.3)(typescript@5.7.3)(yaml@2.7.0))(typescript@5.7.3)': dependencies: '@cloudflare/workers-types': 4.20250129.0 - react-router: 7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-router: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) tsup: 8.3.6(jiti@2.4.2)(postcss@8.5.3)(tsx@4.19.3)(typescript@5.7.3)(yaml@2.7.0) optionalDependencies: typescript: 5.7.3 - '@react-router/dev@7.4.0(@react-router/serve@7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@20.17.17)(babel-plugin-macros@3.1.0)(jiti@2.4.2)(lightningcss@1.29.1)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(tsx@4.19.3)(typescript@5.7.3)(vite@5.4.14(@types/node@20.17.17)(lightningcss@1.29.1)(terser@5.39.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0))(yaml@2.7.0)': + '@react-router/dev@7.4.1(@react-router/serve@7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@20.17.17)(babel-plugin-macros@3.1.0)(lightningcss@1.29.1)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(typescript@5.7.3)(vite@5.4.14(@types/node@20.17.17)(lightningcss@1.29.1)(terser@5.39.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0))': dependencies: '@babel/core': 7.26.10 '@babel/generator': 7.26.10 @@ -12358,7 +12409,7 @@ snapshots: '@babel/traverse': 7.26.10 '@babel/types': 7.26.10 '@npmcli/package-json': 4.0.1 - '@react-router/node': 7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + '@react-router/node': 7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) arg: 5.0.2 babel-dead-code-elimination: 1.0.9 chokidar: 4.0.3 @@ -12372,21 +12423,20 @@ snapshots: picocolors: 1.1.1 prettier: 2.8.8 react-refresh: 0.14.2 - react-router: 7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-router: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) semver: 7.7.1 set-cookie-parser: 2.7.1 valibot: 0.41.0(typescript@5.7.3) vite: 5.4.14(@types/node@20.17.17)(lightningcss@1.29.1)(terser@5.39.0) - vite-node: 3.0.0-beta.2(@types/node@20.17.17)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0) + vite-node: 3.0.0-beta.2(@types/node@20.17.17)(lightningcss@1.29.1)(terser@5.39.0) optionalDependencies: - '@react-router/serve': 7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + '@react-router/serve': 7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) typescript: 5.7.3 wrangler: 3.107.2(@cloudflare/workers-types@4.20250129.0) transitivePeerDependencies: - '@types/node' - babel-plugin-macros - bluebird - - jiti - less - lightningcss - sass @@ -12395,10 +12445,8 @@ snapshots: - sugarss - supports-color - terser - - tsx - - yaml - '@react-router/dev@7.4.0(@react-router/serve@7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@20.17.17)(babel-plugin-macros@3.1.0)(jiti@2.4.2)(lightningcss@1.29.1)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(tsx@4.19.3)(typescript@5.7.3)(vite@6.2.2(@types/node@20.17.17)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0))(yaml@2.7.0)': + '@react-router/dev@7.4.1(@react-router/serve@7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@20.17.17)(babel-plugin-macros@3.1.0)(lightningcss@1.29.1)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(typescript@5.7.3)(vite@6.2.2(@types/node@20.17.17)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0))': dependencies: '@babel/core': 7.26.10 '@babel/generator': 7.26.10 @@ -12409,7 +12457,7 @@ snapshots: '@babel/traverse': 7.26.10 '@babel/types': 7.26.10 '@npmcli/package-json': 4.0.1 - '@react-router/node': 7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + '@react-router/node': 7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) arg: 5.0.2 babel-dead-code-elimination: 1.0.9 chokidar: 4.0.3 @@ -12423,21 +12471,20 @@ snapshots: picocolors: 1.1.1 prettier: 2.8.8 react-refresh: 0.14.2 - react-router: 7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-router: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) semver: 7.7.1 set-cookie-parser: 2.7.1 valibot: 0.41.0(typescript@5.7.3) vite: 6.2.2(@types/node@20.17.17)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0) - vite-node: 3.0.0-beta.2(@types/node@20.17.17)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0) + vite-node: 3.0.0-beta.2(@types/node@20.17.17)(lightningcss@1.29.1)(terser@5.39.0) optionalDependencies: - '@react-router/serve': 7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + '@react-router/serve': 7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) typescript: 5.7.3 wrangler: 3.107.2(@cloudflare/workers-types@4.20250129.0) transitivePeerDependencies: - '@types/node' - babel-plugin-macros - bluebird - - jiti - less - lightningcss - sass @@ -12446,10 +12493,8 @@ snapshots: - sugarss - supports-color - terser - - tsx - - yaml - '@react-router/dev@7.4.0(@react-router/serve@7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(jiti@2.4.2)(lightningcss@1.29.1)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(tsx@4.19.2)(typescript@5.7.3)(vite@6.0.11(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0))(yaml@2.7.0)': + '@react-router/dev@7.4.1(@react-router/serve@7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(lightningcss@1.29.1)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(typescript@5.7.3)(vite@5.4.14(@types/node@22.13.1)(lightningcss@1.29.1)(terser@5.39.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0))': dependencies: '@babel/core': 7.26.10 '@babel/generator': 7.26.10 @@ -12460,7 +12505,7 @@ snapshots: '@babel/traverse': 7.26.10 '@babel/types': 7.26.10 '@npmcli/package-json': 4.0.1 - '@react-router/node': 7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + '@react-router/node': 7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) arg: 5.0.2 babel-dead-code-elimination: 1.0.9 chokidar: 4.0.3 @@ -12474,21 +12519,20 @@ snapshots: picocolors: 1.1.1 prettier: 2.8.8 react-refresh: 0.14.2 - react-router: 7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-router: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) semver: 7.7.1 set-cookie-parser: 2.7.1 valibot: 0.41.0(typescript@5.7.3) - vite: 6.0.11(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0) - vite-node: 3.0.0-beta.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0) + vite: 5.4.14(@types/node@22.13.1)(lightningcss@1.29.1)(terser@5.39.0) + vite-node: 3.0.0-beta.2(@types/node@22.13.1)(lightningcss@1.29.1)(terser@5.39.0) optionalDependencies: - '@react-router/serve': 7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + '@react-router/serve': 7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) typescript: 5.7.3 wrangler: 3.107.2(@cloudflare/workers-types@4.20250129.0) transitivePeerDependencies: - '@types/node' - babel-plugin-macros - bluebird - - jiti - less - lightningcss - sass @@ -12497,10 +12541,8 @@ snapshots: - sugarss - supports-color - terser - - tsx - - yaml - '@react-router/dev@7.4.0(@react-router/serve@7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(jiti@2.4.2)(lightningcss@1.29.1)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(tsx@4.19.2)(typescript@5.7.3)(vite@6.2.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0))(yaml@2.7.0)': + '@react-router/dev@7.4.1(@react-router/serve@7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(lightningcss@1.29.1)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(typescript@5.7.3)(vite@6.0.11(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0))': dependencies: '@babel/core': 7.26.10 '@babel/generator': 7.26.10 @@ -12511,7 +12553,7 @@ snapshots: '@babel/traverse': 7.26.10 '@babel/types': 7.26.10 '@npmcli/package-json': 4.0.1 - '@react-router/node': 7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + '@react-router/node': 7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) arg: 5.0.2 babel-dead-code-elimination: 1.0.9 chokidar: 4.0.3 @@ -12525,21 +12567,20 @@ snapshots: picocolors: 1.1.1 prettier: 2.8.8 react-refresh: 0.14.2 - react-router: 7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-router: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) semver: 7.7.1 set-cookie-parser: 2.7.1 valibot: 0.41.0(typescript@5.7.3) - vite: 6.2.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0) - vite-node: 3.0.0-beta.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0) + vite: 6.0.11(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0) + vite-node: 3.0.0-beta.2(@types/node@22.13.1)(lightningcss@1.29.1)(terser@5.39.0) optionalDependencies: - '@react-router/serve': 7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + '@react-router/serve': 7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) typescript: 5.7.3 wrangler: 3.107.2(@cloudflare/workers-types@4.20250129.0) transitivePeerDependencies: - '@types/node' - babel-plugin-macros - bluebird - - jiti - less - lightningcss - sass @@ -12548,10 +12589,8 @@ snapshots: - sugarss - supports-color - terser - - tsx - - yaml - '@react-router/dev@7.4.0(@react-router/serve@7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(jiti@2.4.2)(lightningcss@1.29.1)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(tsx@4.19.3)(typescript@5.7.3)(vite@6.2.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0))(yaml@2.7.0)': + '@react-router/dev@7.4.1(@react-router/serve@7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(lightningcss@1.29.1)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(typescript@5.7.3)(vite@6.2.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0))': dependencies: '@babel/core': 7.26.10 '@babel/generator': 7.26.10 @@ -12562,7 +12601,7 @@ snapshots: '@babel/traverse': 7.26.10 '@babel/types': 7.26.10 '@npmcli/package-json': 4.0.1 - '@react-router/node': 7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + '@react-router/node': 7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) arg: 5.0.2 babel-dead-code-elimination: 1.0.9 chokidar: 4.0.3 @@ -12576,21 +12615,20 @@ snapshots: picocolors: 1.1.1 prettier: 2.8.8 react-refresh: 0.14.2 - react-router: 7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-router: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) semver: 7.7.1 set-cookie-parser: 2.7.1 valibot: 0.41.0(typescript@5.7.3) - vite: 6.2.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0) - vite-node: 3.0.0-beta.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0) + vite: 6.2.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0) + vite-node: 3.0.0-beta.2(@types/node@22.13.1)(lightningcss@1.29.1)(terser@5.39.0) optionalDependencies: - '@react-router/serve': 7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + '@react-router/serve': 7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) typescript: 5.7.3 wrangler: 3.107.2(@cloudflare/workers-types@4.20250129.0) transitivePeerDependencies: - '@types/node' - babel-plugin-macros - bluebird - - jiti - less - lightningcss - sass @@ -12599,10 +12637,8 @@ snapshots: - sugarss - supports-color - terser - - tsx - - yaml - '@react-router/dev@7.4.0(@react-router/serve@7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.13)(babel-plugin-macros@3.1.0)(jiti@2.4.2)(lightningcss@1.29.1)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(tsx@4.19.3)(typescript@5.7.3)(vite@6.2.2(@types/node@22.13.13)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0))(yaml@2.7.0)': + '@react-router/dev@7.4.1(@react-router/serve@7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.14.0)(babel-plugin-macros@3.1.0)(lightningcss@1.29.1)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(typescript@5.7.3)(vite@6.2.2(@types/node@22.14.0)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0))': dependencies: '@babel/core': 7.26.10 '@babel/generator': 7.26.10 @@ -12613,7 +12649,7 @@ snapshots: '@babel/traverse': 7.26.10 '@babel/types': 7.26.10 '@npmcli/package-json': 4.0.1 - '@react-router/node': 7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + '@react-router/node': 7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) arg: 5.0.2 babel-dead-code-elimination: 1.0.9 chokidar: 4.0.3 @@ -12627,21 +12663,20 @@ snapshots: picocolors: 1.1.1 prettier: 2.8.8 react-refresh: 0.14.2 - react-router: 7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-router: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) semver: 7.7.1 set-cookie-parser: 2.7.1 valibot: 0.41.0(typescript@5.7.3) - vite: 6.2.2(@types/node@22.13.13)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0) - vite-node: 3.0.0-beta.2(@types/node@22.13.13)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0) + vite: 6.2.2(@types/node@22.14.0)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0) + vite-node: 3.0.0-beta.2(@types/node@22.14.0)(lightningcss@1.29.1)(terser@5.39.0) optionalDependencies: - '@react-router/serve': 7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + '@react-router/serve': 7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) typescript: 5.7.3 wrangler: 3.107.2(@cloudflare/workers-types@4.20250129.0) transitivePeerDependencies: - '@types/node' - babel-plugin-macros - bluebird - - jiti - less - lightningcss - sass @@ -12650,48 +12685,54 @@ snapshots: - sugarss - supports-color - terser - - tsx - - yaml - '@react-router/express@7.4.0(express@4.21.2)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3)': + '@react-router/express@7.4.0(express@4.21.2)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3)': + dependencies: + '@react-router/node': 7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + express: 4.21.2 + react-router: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + optionalDependencies: + typescript: 5.7.3 + + '@react-router/express@7.4.1(express@4.21.2)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3)': dependencies: - '@react-router/node': 7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + '@react-router/node': 7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) express: 4.21.2 - react-router: 7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-router: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) optionalDependencies: typescript: 5.7.3 - '@react-router/node@7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3)': + '@react-router/node@7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3)': dependencies: '@mjackson/node-fetch-server': 0.2.0 - react-router: 7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-router: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) source-map-support: 0.5.21 stream-slice: 0.1.2 undici: 6.21.2 optionalDependencies: typescript: 5.7.3 - '@react-router/remix-routes-option-adapter@7.4.0(@react-router/dev@7.4.0(@react-router/serve@7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(jiti@2.4.2)(lightningcss@1.29.1)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(tsx@4.19.2)(typescript@5.7.3)(vite@6.0.11(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0))(yaml@2.7.0))(typescript@5.7.3)': + '@react-router/remix-routes-option-adapter@7.4.0(@react-router/dev@7.4.1(@react-router/serve@7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(lightningcss@1.29.1)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(typescript@5.7.3)(vite@6.0.11(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0)))(typescript@5.7.3)': dependencies: - '@react-router/dev': 7.4.0(@react-router/serve@7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(jiti@2.4.2)(lightningcss@1.29.1)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(tsx@4.19.2)(typescript@5.7.3)(vite@6.0.11(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0))(yaml@2.7.0) + '@react-router/dev': 7.4.1(@react-router/serve@7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(lightningcss@1.29.1)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(typescript@5.7.3)(vite@6.0.11(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0)) optionalDependencies: typescript: 5.7.3 - '@react-router/remix-routes-option-adapter@7.4.0(@react-router/dev@7.4.0(@react-router/serve@7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(jiti@2.4.2)(lightningcss@1.29.1)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(tsx@4.19.2)(typescript@5.7.3)(vite@6.2.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0))(yaml@2.7.0))(typescript@5.7.3)': + '@react-router/remix-routes-option-adapter@7.4.0(@react-router/dev@7.4.1(@react-router/serve@7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(lightningcss@1.29.1)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(typescript@5.7.3)(vite@6.2.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0)))(typescript@5.7.3)': dependencies: - '@react-router/dev': 7.4.0(@react-router/serve@7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(jiti@2.4.2)(lightningcss@1.29.1)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(tsx@4.19.2)(typescript@5.7.3)(vite@6.2.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0))(yaml@2.7.0) + '@react-router/dev': 7.4.1(@react-router/serve@7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3))(@types/node@22.13.1)(babel-plugin-macros@3.1.0)(lightningcss@1.29.1)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(terser@5.39.0)(typescript@5.7.3)(vite@6.2.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.107.2(@cloudflare/workers-types@4.20250129.0)) optionalDependencies: typescript: 5.7.3 - '@react-router/serve@7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3)': + '@react-router/serve@7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3)': dependencies: - '@react-router/express': 7.4.0(express@4.21.2)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) - '@react-router/node': 7.4.0(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) - compression: 1.8.0 + '@react-router/express': 7.4.1(express@4.21.2)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + '@react-router/node': 7.4.1(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(typescript@5.7.3) + compression: 1.7.5 express: 4.21.2 get-port: 5.1.1 morgan: 1.10.0 - react-router: 7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-router: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) source-map-support: 0.5.21 transitivePeerDependencies: - supports-color @@ -12703,8 +12744,8 @@ snapshots: '@remix-run/server-runtime': 2.15.3(typescript@5.7.3) react: 19.0.0 react-dom: 19.0.0(react@19.0.0) - react-router: 7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - react-router-dom: 7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-router: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-router-dom: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) turbo-stream: 2.4.0 optionalDependencies: typescript: 5.7.3 @@ -12726,13 +12767,13 @@ snapshots: '@rollup/rollup-android-arm-eabi@4.34.1': optional: true - '@rollup/rollup-android-arm-eabi@4.37.0': + '@rollup/rollup-android-arm-eabi@4.39.0': optional: true '@rollup/rollup-android-arm64@4.34.1': optional: true - '@rollup/rollup-android-arm64@4.37.0': + '@rollup/rollup-android-arm64@4.39.0': optional: true '@rollup/rollup-darwin-arm64@4.34.1': @@ -12741,73 +12782,76 @@ snapshots: '@rollup/rollup-darwin-arm64@4.37.0': optional: true + '@rollup/rollup-darwin-arm64@4.39.0': + optional: true + '@rollup/rollup-darwin-x64@4.34.1': optional: true - '@rollup/rollup-darwin-x64@4.37.0': + '@rollup/rollup-darwin-x64@4.39.0': optional: true '@rollup/rollup-freebsd-arm64@4.34.1': optional: true - '@rollup/rollup-freebsd-arm64@4.37.0': + '@rollup/rollup-freebsd-arm64@4.39.0': optional: true '@rollup/rollup-freebsd-x64@4.34.1': optional: true - '@rollup/rollup-freebsd-x64@4.37.0': + '@rollup/rollup-freebsd-x64@4.39.0': optional: true '@rollup/rollup-linux-arm-gnueabihf@4.34.1': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.37.0': + '@rollup/rollup-linux-arm-gnueabihf@4.39.0': optional: true '@rollup/rollup-linux-arm-musleabihf@4.34.1': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.37.0': + '@rollup/rollup-linux-arm-musleabihf@4.39.0': optional: true '@rollup/rollup-linux-arm64-gnu@4.34.1': optional: true - '@rollup/rollup-linux-arm64-gnu@4.37.0': + '@rollup/rollup-linux-arm64-gnu@4.39.0': optional: true '@rollup/rollup-linux-arm64-musl@4.34.1': optional: true - '@rollup/rollup-linux-arm64-musl@4.37.0': + '@rollup/rollup-linux-arm64-musl@4.39.0': optional: true '@rollup/rollup-linux-loongarch64-gnu@4.34.1': optional: true - '@rollup/rollup-linux-loongarch64-gnu@4.37.0': + '@rollup/rollup-linux-loongarch64-gnu@4.39.0': optional: true '@rollup/rollup-linux-powerpc64le-gnu@4.34.1': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.37.0': + '@rollup/rollup-linux-powerpc64le-gnu@4.39.0': optional: true '@rollup/rollup-linux-riscv64-gnu@4.34.1': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.37.0': + '@rollup/rollup-linux-riscv64-gnu@4.39.0': optional: true - '@rollup/rollup-linux-riscv64-musl@4.37.0': + '@rollup/rollup-linux-riscv64-musl@4.39.0': optional: true '@rollup/rollup-linux-s390x-gnu@4.34.1': optional: true - '@rollup/rollup-linux-s390x-gnu@4.37.0': + '@rollup/rollup-linux-s390x-gnu@4.39.0': optional: true '@rollup/rollup-linux-x64-gnu@4.34.1': @@ -12816,28 +12860,31 @@ snapshots: '@rollup/rollup-linux-x64-gnu@4.37.0': optional: true + '@rollup/rollup-linux-x64-gnu@4.39.0': + optional: true + '@rollup/rollup-linux-x64-musl@4.34.1': optional: true - '@rollup/rollup-linux-x64-musl@4.37.0': + '@rollup/rollup-linux-x64-musl@4.39.0': optional: true '@rollup/rollup-win32-arm64-msvc@4.34.1': optional: true - '@rollup/rollup-win32-arm64-msvc@4.37.0': + '@rollup/rollup-win32-arm64-msvc@4.39.0': optional: true '@rollup/rollup-win32-ia32-msvc@4.34.1': optional: true - '@rollup/rollup-win32-ia32-msvc@4.37.0': + '@rollup/rollup-win32-ia32-msvc@4.39.0': optional: true '@rollup/rollup-win32-x64-msvc@4.34.1': optional: true - '@rollup/rollup-win32-x64-msvc@4.37.0': + '@rollup/rollup-win32-x64-msvc@4.39.0': optional: true '@rsbuild/core@1.2.19': @@ -12850,9 +12897,9 @@ snapshots: transitivePeerDependencies: - '@rspack/tracing' - '@rsbuild/core@1.3.0-beta.2': + '@rsbuild/core@1.3.2': dependencies: - '@rspack/core': 1.3.0-beta.1(@swc/helpers@0.5.15) + '@rspack/core': 1.3.1(@swc/helpers@0.5.15) '@rspack/lite-tapable': 1.0.1 '@swc/helpers': 0.5.15 core-js: 3.41.0 @@ -12860,20 +12907,20 @@ snapshots: transitivePeerDependencies: - '@rspack/tracing' - '@rsbuild/plugin-react@1.1.1(@rsbuild/core@1.3.0-beta.2)': + '@rsbuild/plugin-react@1.1.1(@rsbuild/core@1.3.2)': dependencies: - '@rsbuild/core': 1.3.0-beta.2 + '@rsbuild/core': 1.3.2 '@rspack/plugin-react-refresh': 1.0.1(react-refresh@0.16.0) react-refresh: 0.16.0 '@rsdoctor/client@0.4.13': {} - '@rsdoctor/core@0.4.13(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2))': + '@rsdoctor/core@0.4.13(@rspack/core@1.3.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2))': dependencies: - '@rsdoctor/graph': 0.4.13(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) - '@rsdoctor/sdk': 0.4.13(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) - '@rsdoctor/types': 0.4.13(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) - '@rsdoctor/utils': 0.4.13(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) + '@rsdoctor/graph': 0.4.13(@rspack/core@1.3.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) + '@rsdoctor/sdk': 0.4.13(@rspack/core@1.3.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) + '@rsdoctor/types': 0.4.13(@rspack/core@1.3.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) + '@rsdoctor/utils': 0.4.13(@rspack/core@1.3.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) axios: 1.7.9 enhanced-resolve: 5.12.0 filesize: 10.1.6 @@ -12891,10 +12938,10 @@ snapshots: - utf-8-validate - webpack - '@rsdoctor/graph@0.4.13(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2))': + '@rsdoctor/graph@0.4.13(@rspack/core@1.3.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2))': dependencies: - '@rsdoctor/types': 0.4.13(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) - '@rsdoctor/utils': 0.4.13(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) + '@rsdoctor/types': 0.4.13(@rspack/core@1.3.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) + '@rsdoctor/utils': 0.4.13(@rspack/core@1.3.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) lodash.unionby: 4.8.0 socket.io: 4.8.1 source-map: 0.7.4 @@ -12905,14 +12952,14 @@ snapshots: - utf-8-validate - webpack - '@rsdoctor/rspack-plugin@0.4.13(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2))': + '@rsdoctor/rspack-plugin@0.4.13(@rspack/core@1.3.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2))': dependencies: - '@rsdoctor/core': 0.4.13(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) - '@rsdoctor/graph': 0.4.13(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) - '@rsdoctor/sdk': 0.4.13(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) - '@rsdoctor/types': 0.4.13(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) - '@rsdoctor/utils': 0.4.13(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) - '@rspack/core': 1.3.0-beta.1(@swc/helpers@0.5.15) + '@rsdoctor/core': 0.4.13(@rspack/core@1.3.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) + '@rsdoctor/graph': 0.4.13(@rspack/core@1.3.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) + '@rsdoctor/sdk': 0.4.13(@rspack/core@1.3.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) + '@rsdoctor/types': 0.4.13(@rspack/core@1.3.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) + '@rsdoctor/utils': 0.4.13(@rspack/core@1.3.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) + '@rspack/core': 1.3.1(@swc/helpers@0.5.15) lodash: 4.17.21 transitivePeerDependencies: - bufferutil @@ -12921,12 +12968,12 @@ snapshots: - utf-8-validate - webpack - '@rsdoctor/sdk@0.4.13(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2))': + '@rsdoctor/sdk@0.4.13(@rspack/core@1.3.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2))': dependencies: '@rsdoctor/client': 0.4.13 - '@rsdoctor/graph': 0.4.13(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) - '@rsdoctor/types': 0.4.13(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) - '@rsdoctor/utils': 0.4.13(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) + '@rsdoctor/graph': 0.4.13(@rspack/core@1.3.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) + '@rsdoctor/types': 0.4.13(@rspack/core@1.3.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) + '@rsdoctor/utils': 0.4.13(@rspack/core@1.3.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) '@types/fs-extra': 11.0.4 body-parser: 1.20.3 cors: 2.8.5 @@ -12946,7 +12993,7 @@ snapshots: - utf-8-validate - webpack - '@rsdoctor/types@0.4.13(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2))': + '@rsdoctor/types@0.4.13(@rspack/core@1.3.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2))': dependencies: '@types/connect': 3.4.38 '@types/estree': 1.0.5 @@ -12954,12 +13001,12 @@ snapshots: source-map: 0.7.4 webpack: 5.97.1(esbuild@0.24.2) optionalDependencies: - '@rspack/core': 1.3.0-beta.1(@swc/helpers@0.5.15) + '@rspack/core': 1.3.1(@swc/helpers@0.5.15) - '@rsdoctor/utils@0.4.13(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2))': + '@rsdoctor/utils@0.4.13(@rspack/core@1.3.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2))': dependencies: '@babel/code-frame': 7.25.7 - '@rsdoctor/types': 0.4.13(@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) + '@rsdoctor/types': 0.4.13(@rspack/core@1.3.1(@swc/helpers@0.5.15))(webpack@5.97.1(esbuild@0.24.2)) '@types/estree': 1.0.5 acorn: 8.14.0 acorn-import-assertions: 1.9.0(acorn@8.14.0) @@ -13003,55 +13050,55 @@ snapshots: '@rspack/binding-darwin-arm64@1.2.8': optional: true - '@rspack/binding-darwin-arm64@1.3.0-beta.1': + '@rspack/binding-darwin-arm64@1.3.1': optional: true '@rspack/binding-darwin-x64@1.2.8': optional: true - '@rspack/binding-darwin-x64@1.3.0-beta.1': + '@rspack/binding-darwin-x64@1.3.1': optional: true '@rspack/binding-linux-arm64-gnu@1.2.8': optional: true - '@rspack/binding-linux-arm64-gnu@1.3.0-beta.1': + '@rspack/binding-linux-arm64-gnu@1.3.1': optional: true '@rspack/binding-linux-arm64-musl@1.2.8': optional: true - '@rspack/binding-linux-arm64-musl@1.3.0-beta.1': + '@rspack/binding-linux-arm64-musl@1.3.1': optional: true '@rspack/binding-linux-x64-gnu@1.2.8': optional: true - '@rspack/binding-linux-x64-gnu@1.3.0-beta.1': + '@rspack/binding-linux-x64-gnu@1.3.1': optional: true '@rspack/binding-linux-x64-musl@1.2.8': optional: true - '@rspack/binding-linux-x64-musl@1.3.0-beta.1': + '@rspack/binding-linux-x64-musl@1.3.1': optional: true '@rspack/binding-win32-arm64-msvc@1.2.8': optional: true - '@rspack/binding-win32-arm64-msvc@1.3.0-beta.1': + '@rspack/binding-win32-arm64-msvc@1.3.1': optional: true '@rspack/binding-win32-ia32-msvc@1.2.8': optional: true - '@rspack/binding-win32-ia32-msvc@1.3.0-beta.1': + '@rspack/binding-win32-ia32-msvc@1.3.1': optional: true '@rspack/binding-win32-x64-msvc@1.2.8': optional: true - '@rspack/binding-win32-x64-msvc@1.3.0-beta.1': + '@rspack/binding-win32-x64-msvc@1.3.1': optional: true '@rspack/binding@1.2.8': @@ -13066,17 +13113,17 @@ snapshots: '@rspack/binding-win32-ia32-msvc': 1.2.8 '@rspack/binding-win32-x64-msvc': 1.2.8 - '@rspack/binding@1.3.0-beta.1': + '@rspack/binding@1.3.1': optionalDependencies: - '@rspack/binding-darwin-arm64': 1.3.0-beta.1 - '@rspack/binding-darwin-x64': 1.3.0-beta.1 - '@rspack/binding-linux-arm64-gnu': 1.3.0-beta.1 - '@rspack/binding-linux-arm64-musl': 1.3.0-beta.1 - '@rspack/binding-linux-x64-gnu': 1.3.0-beta.1 - '@rspack/binding-linux-x64-musl': 1.3.0-beta.1 - '@rspack/binding-win32-arm64-msvc': 1.3.0-beta.1 - '@rspack/binding-win32-ia32-msvc': 1.3.0-beta.1 - '@rspack/binding-win32-x64-msvc': 1.3.0-beta.1 + '@rspack/binding-darwin-arm64': 1.3.1 + '@rspack/binding-darwin-x64': 1.3.1 + '@rspack/binding-linux-arm64-gnu': 1.3.1 + '@rspack/binding-linux-arm64-musl': 1.3.1 + '@rspack/binding-linux-x64-gnu': 1.3.1 + '@rspack/binding-linux-x64-musl': 1.3.1 + '@rspack/binding-win32-arm64-msvc': 1.3.1 + '@rspack/binding-win32-ia32-msvc': 1.3.1 + '@rspack/binding-win32-x64-msvc': 1.3.1 '@rspack/core@1.2.8(@swc/helpers@0.5.15)': dependencies: @@ -13087,12 +13134,13 @@ snapshots: optionalDependencies: '@swc/helpers': 0.5.15 - '@rspack/core@1.3.0-beta.1(@swc/helpers@0.5.15)': + '@rspack/core@1.3.1(@swc/helpers@0.5.15)': dependencies: '@module-federation/runtime-tools': 0.11.1 - '@rspack/binding': 1.3.0-beta.1 + '@rspack/binding': 1.3.1 '@rspack/lite-tapable': 1.0.1 caniuse-lite: 1.0.30001707 + tinypool: 1.0.2 optionalDependencies: '@swc/helpers': 0.5.15 @@ -13534,9 +13582,10 @@ snapshots: dependencies: undici-types: 6.20.0 - '@types/node@22.13.13': + '@types/node@22.14.0': dependencies: - undici-types: 6.20.0 + undici-types: 6.21.0 + optional: true '@types/parse-json@4.0.2': {} @@ -14169,6 +14218,8 @@ snapshots: big-integer@1.6.52: {} + big.js@5.2.2: {} + binary-extensions@2.3.0: {} bindings@1.5.0: @@ -14426,18 +14477,6 @@ snapshots: transitivePeerDependencies: - supports-color - compression@1.8.0: - dependencies: - bytes: 3.1.2 - compressible: 2.0.18 - debug: 2.6.9 - negotiator: 0.6.4 - on-headers: 1.0.2 - safe-buffer: 5.2.1 - vary: 1.1.2 - transitivePeerDependencies: - - supports-color - concat-map@0.0.1: {} concat-stream@1.6.2: @@ -14813,6 +14852,8 @@ snapshots: emoji-regex@9.2.2: {} + emojis-list@3.0.0: {} + encodeurl@1.0.2: {} encodeurl@2.0.0: {} @@ -15108,33 +15149,33 @@ snapshots: '@esbuild/win32-ia32': 0.24.2 '@esbuild/win32-x64': 0.24.2 - esbuild@0.25.1: + esbuild@0.25.2: optionalDependencies: - '@esbuild/aix-ppc64': 0.25.1 - '@esbuild/android-arm': 0.25.1 - '@esbuild/android-arm64': 0.25.1 - '@esbuild/android-x64': 0.25.1 - '@esbuild/darwin-arm64': 0.25.1 - '@esbuild/darwin-x64': 0.25.1 - '@esbuild/freebsd-arm64': 0.25.1 - '@esbuild/freebsd-x64': 0.25.1 - '@esbuild/linux-arm': 0.25.1 - '@esbuild/linux-arm64': 0.25.1 - '@esbuild/linux-ia32': 0.25.1 - '@esbuild/linux-loong64': 0.25.1 - '@esbuild/linux-mips64el': 0.25.1 - '@esbuild/linux-ppc64': 0.25.1 - '@esbuild/linux-riscv64': 0.25.1 - '@esbuild/linux-s390x': 0.25.1 - '@esbuild/linux-x64': 0.25.1 - '@esbuild/netbsd-arm64': 0.25.1 - '@esbuild/netbsd-x64': 0.25.1 - '@esbuild/openbsd-arm64': 0.25.1 - '@esbuild/openbsd-x64': 0.25.1 - '@esbuild/sunos-x64': 0.25.1 - '@esbuild/win32-arm64': 0.25.1 - '@esbuild/win32-ia32': 0.25.1 - '@esbuild/win32-x64': 0.25.1 + '@esbuild/aix-ppc64': 0.25.2 + '@esbuild/android-arm': 0.25.2 + '@esbuild/android-arm64': 0.25.2 + '@esbuild/android-x64': 0.25.2 + '@esbuild/darwin-arm64': 0.25.2 + '@esbuild/darwin-x64': 0.25.2 + '@esbuild/freebsd-arm64': 0.25.2 + '@esbuild/freebsd-x64': 0.25.2 + '@esbuild/linux-arm': 0.25.2 + '@esbuild/linux-arm64': 0.25.2 + '@esbuild/linux-ia32': 0.25.2 + '@esbuild/linux-loong64': 0.25.2 + '@esbuild/linux-mips64el': 0.25.2 + '@esbuild/linux-ppc64': 0.25.2 + '@esbuild/linux-riscv64': 0.25.2 + '@esbuild/linux-s390x': 0.25.2 + '@esbuild/linux-x64': 0.25.2 + '@esbuild/netbsd-arm64': 0.25.2 + '@esbuild/netbsd-x64': 0.25.2 + '@esbuild/openbsd-arm64': 0.25.2 + '@esbuild/openbsd-x64': 0.25.2 + '@esbuild/sunos-x64': 0.25.2 + '@esbuild/win32-arm64': 0.25.2 + '@esbuild/win32-ia32': 0.25.2 + '@esbuild/win32-x64': 0.25.2 escalade@3.2.0: {} @@ -16079,7 +16120,7 @@ snapshots: jest-worker@27.5.1: dependencies: - '@types/node': 22.13.13 + '@types/node': 22.13.1 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -16148,7 +16189,7 @@ snapshots: http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 is-potential-custom-element-name: 1.0.1 - nwsapi: 2.2.19 + nwsapi: 2.2.20 parse5: 7.2.1 rrweb-cssom: 0.8.0 saxes: 6.0.0 @@ -16338,6 +16379,12 @@ snapshots: loader-runner@4.3.0: {} + loader-utils@2.0.4: + dependencies: + big.js: 5.2.2 + emojis-list: 3.0.0 + json5: 2.2.3 + locate-path@5.0.0: dependencies: p-locate: 4.1.0 @@ -16588,7 +16635,7 @@ snapshots: path-to-regexp: 6.3.0 picocolors: 1.1.1 strict-event-emitter: 0.5.1 - type-fest: 4.38.0 + type-fest: 4.39.0 yargs: 17.7.2 optionalDependencies: typescript: 5.7.3 @@ -16725,6 +16772,9 @@ snapshots: nwsapi@2.2.19: {} + nwsapi@2.2.20: + optional: true + object-assign@4.1.1: {} object-hash@3.0.0: {} @@ -17251,7 +17301,7 @@ snapshots: optionalDependencies: '@types/react': 19.0.8 - react-router-devtools@1.1.6(@types/react-dom@19.0.3(@types/react@19.0.8))(@types/react@19.0.8)(react-dom@19.0.0(react@19.0.0))(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(vite@5.4.14(@types/node@20.17.17)(lightningcss@1.29.1)(terser@5.39.0)): + react-router-devtools@1.1.6(@types/react-dom@19.0.3(@types/react@19.0.8))(@types/react@19.0.8)(react-dom@19.0.0(react@19.0.0))(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(vite@5.4.14(@types/node@20.17.17)(lightningcss@1.29.1)(terser@5.39.0)): dependencies: '@babel/core': 7.26.10 '@babel/generator': 7.26.10 @@ -17271,7 +17321,7 @@ snapshots: react-diff-viewer-continued: 4.0.5(@types/react@19.0.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react-dom: 19.0.0(react@19.0.0) react-hotkeys-hook: 4.6.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - react-router: 7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-router: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react-tooltip: 5.28.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) vite: 5.4.14(@types/node@20.17.17)(lightningcss@1.29.1)(terser@5.39.0) optionalDependencies: @@ -17284,13 +17334,13 @@ snapshots: - '@types/react-dom' - supports-color - react-router-dom@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0): + react-router-dom@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: react: 19.0.0 react-dom: 19.0.0(react@19.0.0) - react-router: 7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-router: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0): + react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: '@types/cookie': 0.6.0 cookie: 1.0.2 @@ -17406,14 +17456,14 @@ snapshots: '@remix-run/server-runtime': 2.15.3(typescript@5.7.3) uuid: 8.3.2 - remix-flat-routes@0.8.4(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)): + remix-flat-routes@0.8.4(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)): dependencies: fs-extra: 11.3.0 minimatch: 10.0.1 optionalDependencies: - react-router: 7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-router: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - remix-utils@8.1.0(@oslojs/crypto@1.0.1)(@oslojs/encoding@1.1.0)(intl-parse-accept-language@1.0.0)(react-router@7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(zod@3.24.1): + remix-utils@8.1.0(@oslojs/crypto@1.0.1)(@oslojs/encoding@1.1.0)(intl-parse-accept-language@1.0.0)(react-router@7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(zod@3.24.1): dependencies: type-fest: 4.37.0 optionalDependencies: @@ -17421,7 +17471,7 @@ snapshots: '@oslojs/encoding': 1.1.0 intl-parse-accept-language: 1.0.0 react: 19.0.0 - react-router: 7.4.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-router: 7.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) zod: 3.24.1 require-directory@2.1.1: {} @@ -17531,30 +17581,30 @@ snapshots: '@rollup/rollup-win32-x64-msvc': 4.34.1 fsevents: 2.3.3 - rollup@4.37.0: + rollup@4.39.0: dependencies: - '@types/estree': 1.0.6 + '@types/estree': 1.0.7 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.37.0 - '@rollup/rollup-android-arm64': 4.37.0 - '@rollup/rollup-darwin-arm64': 4.37.0 - '@rollup/rollup-darwin-x64': 4.37.0 - '@rollup/rollup-freebsd-arm64': 4.37.0 - '@rollup/rollup-freebsd-x64': 4.37.0 - '@rollup/rollup-linux-arm-gnueabihf': 4.37.0 - '@rollup/rollup-linux-arm-musleabihf': 4.37.0 - '@rollup/rollup-linux-arm64-gnu': 4.37.0 - '@rollup/rollup-linux-arm64-musl': 4.37.0 - '@rollup/rollup-linux-loongarch64-gnu': 4.37.0 - '@rollup/rollup-linux-powerpc64le-gnu': 4.37.0 - '@rollup/rollup-linux-riscv64-gnu': 4.37.0 - '@rollup/rollup-linux-riscv64-musl': 4.37.0 - '@rollup/rollup-linux-s390x-gnu': 4.37.0 - '@rollup/rollup-linux-x64-gnu': 4.37.0 - '@rollup/rollup-linux-x64-musl': 4.37.0 - '@rollup/rollup-win32-arm64-msvc': 4.37.0 - '@rollup/rollup-win32-ia32-msvc': 4.37.0 - '@rollup/rollup-win32-x64-msvc': 4.37.0 + '@rollup/rollup-android-arm-eabi': 4.39.0 + '@rollup/rollup-android-arm64': 4.39.0 + '@rollup/rollup-darwin-arm64': 4.39.0 + '@rollup/rollup-darwin-x64': 4.39.0 + '@rollup/rollup-freebsd-arm64': 4.39.0 + '@rollup/rollup-freebsd-x64': 4.39.0 + '@rollup/rollup-linux-arm-gnueabihf': 4.39.0 + '@rollup/rollup-linux-arm-musleabihf': 4.39.0 + '@rollup/rollup-linux-arm64-gnu': 4.39.0 + '@rollup/rollup-linux-arm64-musl': 4.39.0 + '@rollup/rollup-linux-loongarch64-gnu': 4.39.0 + '@rollup/rollup-linux-powerpc64le-gnu': 4.39.0 + '@rollup/rollup-linux-riscv64-gnu': 4.39.0 + '@rollup/rollup-linux-riscv64-musl': 4.39.0 + '@rollup/rollup-linux-s390x-gnu': 4.39.0 + '@rollup/rollup-linux-x64-gnu': 4.39.0 + '@rollup/rollup-linux-x64-musl': 4.39.0 + '@rollup/rollup-win32-arm64-msvc': 4.39.0 + '@rollup/rollup-win32-ia32-msvc': 4.39.0 + '@rollup/rollup-win32-x64-msvc': 4.39.0 fsevents: 2.3.3 rrweb-cssom@0.7.1: {} @@ -17920,6 +17970,12 @@ snapshots: strict-event-emitter@0.5.1: {} + string-replace-loader@3.1.0(webpack@5.97.1(esbuild@0.24.2)): + dependencies: + loader-utils: 2.0.4 + schema-utils: 3.3.0 + webpack: 5.97.1(esbuild@0.24.2) + string-width@4.2.3: dependencies: emoji-regex: 8.0.0 @@ -18119,6 +18175,8 @@ snapshots: glob: 10.4.5 minimatch: 9.0.5 + text-encoder-lite@2.0.0: {} + thenify-all@1.6.0: dependencies: thenify: 3.3.1 @@ -18217,7 +18275,7 @@ snapshots: picocolors: 1.1.1 postcss-load-config: 6.0.1(jiti@2.4.2)(postcss@8.5.3)(tsx@4.19.3)(yaml@2.7.0) resolve-from: 5.0.0 - rollup: 4.37.0 + rollup: 4.39.0 source-map: 0.8.0-beta.0 sucrase: 3.35.0 tinyexec: 0.3.2 @@ -18241,7 +18299,7 @@ snapshots: tsx@4.19.3: dependencies: - esbuild: 0.25.1 + esbuild: 0.25.2 get-tsconfig: 4.10.0 optionalDependencies: fsevents: 2.3.3 @@ -18263,7 +18321,7 @@ snapshots: type-fest@4.37.0: {} - type-fest@4.38.0: + type-fest@4.39.0: optional: true type-is@1.6.18: @@ -18331,6 +18389,9 @@ snapshots: undici-types@6.20.0: {} + undici-types@6.21.0: + optional: true + undici@5.28.5: dependencies: '@fastify/busboy': 2.1.1 @@ -18428,37 +18489,15 @@ snapshots: transitivePeerDependencies: - supports-color - vite-node@3.0.0-beta.2(@types/node@20.17.17)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0): + vite-node@3.0.0-beta.2(@types/node@20.17.17)(lightningcss@1.29.1)(terser@5.39.0): dependencies: cac: 6.7.14 debug: 4.4.0 es-module-lexer: 1.6.0 pathe: 1.1.2 - vite: 6.2.2(@types/node@20.17.17)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0) - transitivePeerDependencies: - - '@types/node' - - jiti - - less - - lightningcss - - sass - - sass-embedded - - stylus - - sugarss - - supports-color - - terser - - tsx - - yaml - - vite-node@3.0.0-beta.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0): - dependencies: - cac: 6.7.14 - debug: 4.4.0 - es-module-lexer: 1.6.0 - pathe: 1.1.2 - vite: 6.2.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0) + vite: 5.4.14(@types/node@20.17.17)(lightningcss@1.29.1)(terser@5.39.0) transitivePeerDependencies: - '@types/node' - - jiti - less - lightningcss - sass @@ -18467,19 +18506,16 @@ snapshots: - sugarss - supports-color - terser - - tsx - - yaml - vite-node@3.0.0-beta.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0): + vite-node@3.0.0-beta.2(@types/node@22.13.1)(lightningcss@1.29.1)(terser@5.39.0): dependencies: cac: 6.7.14 debug: 4.4.0 es-module-lexer: 1.6.0 pathe: 1.1.2 - vite: 6.2.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0) + vite: 5.4.14(@types/node@22.13.1)(lightningcss@1.29.1)(terser@5.39.0) transitivePeerDependencies: - '@types/node' - - jiti - less - lightningcss - sass @@ -18488,19 +18524,16 @@ snapshots: - sugarss - supports-color - terser - - tsx - - yaml - vite-node@3.0.0-beta.2(@types/node@22.13.13)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0): + vite-node@3.0.0-beta.2(@types/node@22.14.0)(lightningcss@1.29.1)(terser@5.39.0): dependencies: cac: 6.7.14 debug: 4.4.0 es-module-lexer: 1.6.0 pathe: 1.1.2 - vite: 6.2.2(@types/node@22.13.13)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0) + vite: 5.4.14(@types/node@22.14.0)(lightningcss@1.29.1)(terser@5.39.0) transitivePeerDependencies: - '@types/node' - - jiti - less - lightningcss - sass @@ -18509,8 +18542,6 @@ snapshots: - sugarss - supports-color - terser - - tsx - - yaml vite-node@3.0.5(@types/node@22.13.1)(lightningcss@1.29.1)(terser@5.39.0): dependencies: @@ -18563,6 +18594,17 @@ snapshots: lightningcss: 1.29.1 terser: 5.39.0 + vite@5.4.14(@types/node@22.14.0)(lightningcss@1.29.1)(terser@5.39.0): + dependencies: + esbuild: 0.21.5 + postcss: 8.5.1 + rollup: 4.34.1 + optionalDependencies: + '@types/node': 22.14.0 + fsevents: 2.3.3 + lightningcss: 1.29.1 + terser: 5.39.0 + vite@6.0.11(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0): dependencies: esbuild: 0.24.2 @@ -18579,9 +18621,9 @@ snapshots: vite@6.2.2(@types/node@20.17.17)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0): dependencies: - esbuild: 0.25.1 + esbuild: 0.25.2 postcss: 8.5.3 - rollup: 4.37.0 + rollup: 4.39.0 optionalDependencies: '@types/node': 20.17.17 fsevents: 2.3.3 @@ -18593,9 +18635,9 @@ snapshots: vite@6.2.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.2)(yaml@2.7.0): dependencies: - esbuild: 0.25.1 + esbuild: 0.25.2 postcss: 8.5.3 - rollup: 4.37.0 + rollup: 4.39.0 optionalDependencies: '@types/node': 22.13.1 fsevents: 2.3.3 @@ -18605,27 +18647,13 @@ snapshots: tsx: 4.19.2 yaml: 2.7.0 - vite@6.2.2(@types/node@22.13.1)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0): - dependencies: - esbuild: 0.25.1 - postcss: 8.5.3 - rollup: 4.37.0 - optionalDependencies: - '@types/node': 22.13.1 - fsevents: 2.3.3 - jiti: 2.4.2 - lightningcss: 1.29.1 - terser: 5.39.0 - tsx: 4.19.3 - yaml: 2.7.0 - - vite@6.2.2(@types/node@22.13.13)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0): + vite@6.2.2(@types/node@22.14.0)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.39.0)(tsx@4.19.3)(yaml@2.7.0): dependencies: - esbuild: 0.25.1 + esbuild: 0.25.2 postcss: 8.5.3 - rollup: 4.37.0 + rollup: 4.39.0 optionalDependencies: - '@types/node': 22.13.13 + '@types/node': 22.14.0 fsevents: 2.3.3 jiti: 2.4.2 lightningcss: 1.29.1 diff --git a/src/index.ts b/src/index.ts index d5e0b3d..f7009e8 100644 --- a/src/index.ts +++ b/src/index.ts @@ -286,7 +286,7 @@ export const pluginReactRouter = ( }, tools: { rspack: { - target: 'async-node', + target: options.federation ? 'async-node' : 'node', externals: ['express'], dependencies: ['web'], experiments: {