From 3df10a50b2392c0f2da01de83e83c85d1989f269 Mon Sep 17 00:00:00 2001 From: Jiahan Chen Date: Wed, 26 Aug 2026 10:12:11 +0800 Subject: [PATCH 1/8] docs: update website theme styles (#413) --- website/theme/index.scss | 36 +------------------- website/theme/theme.scss | 71 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 72 insertions(+), 35 deletions(-) create mode 100644 website/theme/theme.scss diff --git a/website/theme/index.scss b/website/theme/index.scss index 1c4cd0ed..9a0c9c56 100644 --- a/website/theme/index.scss +++ b/website/theme/index.scss @@ -1,10 +1,4 @@ -:root { - --rp-c-text-code: var(--rp-c-text-1); -} - -.dark { - --rp-c-link: var(--rp-c-brand-light); -} +@import './theme.scss'; /* Keep document content visually centered when a page has no sidebar. */ @media (min-width: 1280px) { @@ -20,31 +14,3 @@ body:has(#home-hero-title) .rp-nav { .rspress-logo { height: 1.8rem; } - -.rp-doc { - .rp-link, - .rp-link code { - color: inherit; - text-decoration-line: underline; - text-underline-offset: 2px; - text-decoration-color: rgba(0, 0, 0, 0.25); - - &:hover { - opacity: 1; - text-decoration-color: currentColor; - border-bottom: none !important; - } - } -} - -.dark { - .rp-doc { - .rp-link { - text-decoration-color: rgba(255, 255, 255, 0.5); - - &:hover { - text-decoration-color: currentColor; - } - } - } -} diff --git a/website/theme/theme.scss b/website/theme/theme.scss new file mode 100644 index 00000000..2f6c9ce4 --- /dev/null +++ b/website/theme/theme.scss @@ -0,0 +1,71 @@ +:root { + --rp-c-brand: #f93920; + --rp-c-brand-light: #fa6552; + --rp-c-brand-lighter: #fc9183; + --rp-c-brand-dark: #f82307; + --rp-c-brand-darker: #e01f06; + --rp-c-brand-tint: rgba(249, 57, 32, 0.15); + --rp-c-text-code: var(--rp-c-text-1); +} + +.dark { + --rp-c-link: var(--rp-c-brand-light); +} + +html:not(.dark) { + --rp-c-text-2: #666; +} + +.rp-sidebar-item:hover, +.rp-sidebar-item--active, +.rp-sidebar-item--active:hover { + color: var(--rp-c-text-0); + background-color: var(--rp-c-bg-mute); +} + +.dark { + .rp-sidebar-item:hover, + .rp-sidebar-item--active, + .rp-sidebar-item--active:hover { + background-color: #1f1f1f; + } +} + +.rp-toc-item__text, +.rp-toc-item__text code { + color: var(--rp-c-text-2); +} + +.rp-toc-item--active .rp-toc-item__text, +.rp-toc-item--active .rp-toc-item__text code { + color: var(--rp-c-text-0); + font-weight: 500; +} + +.rp-doc { + .rp-link, + .rp-link code { + color: inherit; + text-decoration-line: underline; + text-underline-offset: 2px; + text-decoration-color: rgba(0, 0, 0, 0.25); + + &:hover { + opacity: 1; + text-decoration-color: currentColor; + border-bottom: none !important; + } + } +} + +.dark { + .rp-doc { + .rp-link { + text-decoration-color: rgba(255, 255, 255, 0.5); + + &:hover { + text-decoration-color: currentColor; + } + } + } +} From ea0ba015bf6642653d80112ef93dfd0ff5e639d5 Mon Sep 17 00:00:00 2001 From: Jiahan Chen Date: Wed, 26 Aug 2026 17:43:15 +0800 Subject: [PATCH 2/8] docs: move LLMs UI to page outline (#414) --- website/rstack.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/website/rstack.config.ts b/website/rstack.config.ts index 29116243..c978dd7f 100644 --- a/website/rstack.config.ts +++ b/website/rstack.config.ts @@ -78,6 +78,7 @@ define.doc(async () => { ], themeConfig: { llmsUI: { + placement: 'outline', injectLlmsHint, }, socialLinks: [ From 045a9ec294afcbf11a8bb4b38d25534a6d265d62 Mon Sep 17 00:00:00 2001 From: Jiahan Chen Date: Wed, 26 Aug 2026 17:46:53 +0800 Subject: [PATCH 3/8] chore(deps): upgrade npm dependencies (#415) --- package.json | 2 +- .../template-app-lit-ts/package.json | 4 +- .../template-app-lit/package.json | 2 +- .../template-app-preact-ts/package.json | 6 +- .../template-app-preact/package.json | 4 +- .../template-app-react-ts/package.json | 6 +- .../template-app-react/package.json | 2 +- .../template-app-solid-ts/package.json | 4 +- .../template-app-solid/package.json | 2 +- .../template-app-svelte-ts/package.json | 6 +- .../template-app-svelte/package.json | 4 +- .../template-app-vanilla-ts/package.json | 4 +- .../template-app-vanilla/package.json | 2 +- .../template-app-vue-ts/package.json | 6 +- .../template-app-vue/package.json | 2 +- .../template-doc-i18n/package.json | 6 +- .../create-rstack/template-doc/package.json | 6 +- .../template-lib-node-ts/package.json | 2 +- .../template-lib-react-ts/package.json | 6 +- .../template-lib-react/package.json | 4 +- .../template-lib-solid-ts/package.json | 4 +- .../template-lib-solid/package.json | 2 +- .../template-lib-svelte-ts/package.json | 6 +- .../template-lib-svelte/package.json | 4 +- .../template-lib-vue-ts/package.json | 6 +- .../template-lib-vue/package.json | 2 +- pnpm-lock.yaml | 922 +++++++----------- pnpm-workspace.yaml | 32 +- 28 files changed, 443 insertions(+), 615 deletions(-) diff --git a/package.json b/package.json index 36aa501e..628a2776 100644 --- a/package.json +++ b/package.json @@ -24,5 +24,5 @@ "rstack": "workspace:*", "typescript": "catalog:" }, - "packageManager": "pnpm@11.22.0" + "packageManager": "pnpm@11.24.0" } diff --git a/packages/create-rstack/template-app-lit-ts/package.json b/packages/create-rstack/template-app-lit-ts/package.json index 256b8e2a..58d2da64 100644 --- a/packages/create-rstack/template-app-lit-ts/package.json +++ b/packages/create-rstack/template-app-lit-ts/package.json @@ -17,8 +17,8 @@ "lit": "^3.3.3" }, "devDependencies": { - "@types/node": "^24.13.3", - "happy-dom": "^20.11.2", + "@types/node": "^26.3.0", + "happy-dom": "^20.11.6", "rstack": "^0.6.4", "typescript": "^7.0.2" } diff --git a/packages/create-rstack/template-app-lit/package.json b/packages/create-rstack/template-app-lit/package.json index 1e218aa6..c962013b 100644 --- a/packages/create-rstack/template-app-lit/package.json +++ b/packages/create-rstack/template-app-lit/package.json @@ -17,7 +17,7 @@ "lit": "^3.3.3" }, "devDependencies": { - "happy-dom": "^20.11.2", + "happy-dom": "^20.11.6", "rstack": "^0.6.4" } } diff --git a/packages/create-rstack/template-app-preact-ts/package.json b/packages/create-rstack/template-app-preact-ts/package.json index 8c4e5b3c..12844158 100644 --- a/packages/create-rstack/template-app-preact-ts/package.json +++ b/packages/create-rstack/template-app-preact-ts/package.json @@ -17,11 +17,11 @@ "preact": "^10.29.8" }, "devDependencies": { - "@rsbuild/plugin-preact": "^2.0.0", + "@rsbuild/plugin-preact": "^2.1.0", "@testing-library/jest-dom": "^7.0.1", "@testing-library/preact": "^3.2.4", - "@types/node": "^24.13.3", - "happy-dom": "^20.11.2", + "@types/node": "^26.3.0", + "happy-dom": "^20.11.6", "rstack": "^0.6.4", "typescript": "^7.0.2" } diff --git a/packages/create-rstack/template-app-preact/package.json b/packages/create-rstack/template-app-preact/package.json index 3895d8fe..1265a010 100644 --- a/packages/create-rstack/template-app-preact/package.json +++ b/packages/create-rstack/template-app-preact/package.json @@ -17,10 +17,10 @@ "preact": "^10.29.8" }, "devDependencies": { - "@rsbuild/plugin-preact": "^2.0.0", + "@rsbuild/plugin-preact": "^2.1.0", "@testing-library/jest-dom": "^7.0.1", "@testing-library/preact": "^3.2.4", - "happy-dom": "^20.11.2", + "happy-dom": "^20.11.6", "rstack": "^0.6.4" } } diff --git a/packages/create-rstack/template-app-react-ts/package.json b/packages/create-rstack/template-app-react-ts/package.json index 397fc308..6cbccd72 100644 --- a/packages/create-rstack/template-app-react-ts/package.json +++ b/packages/create-rstack/template-app-react-ts/package.json @@ -22,10 +22,10 @@ "@testing-library/dom": "^10.4.1", "@testing-library/jest-dom": "^7.0.1", "@testing-library/react": "^16.3.2", - "@types/node": "^24.13.3", + "@types/node": "^26.3.0", "@types/react": "^19.2.18", - "@types/react-dom": "^19.2.4", - "happy-dom": "^20.11.2", + "@types/react-dom": "^19.2.5", + "happy-dom": "^20.11.6", "rstack": "^0.6.4", "typescript": "^7.0.2" } diff --git a/packages/create-rstack/template-app-react/package.json b/packages/create-rstack/template-app-react/package.json index ee72465b..fef8482c 100644 --- a/packages/create-rstack/template-app-react/package.json +++ b/packages/create-rstack/template-app-react/package.json @@ -22,7 +22,7 @@ "@testing-library/dom": "^10.4.1", "@testing-library/jest-dom": "^7.0.1", "@testing-library/react": "^16.3.2", - "happy-dom": "^20.11.2", + "happy-dom": "^20.11.6", "rstack": "^0.6.4" } } diff --git a/packages/create-rstack/template-app-solid-ts/package.json b/packages/create-rstack/template-app-solid-ts/package.json index d2bbc0c0..7241a9dc 100644 --- a/packages/create-rstack/template-app-solid-ts/package.json +++ b/packages/create-rstack/template-app-solid-ts/package.json @@ -21,8 +21,8 @@ "@rsbuild/plugin-solid": "^1.2.2", "@solidjs/testing-library": "^0.8.10", "@testing-library/jest-dom": "^7.0.1", - "@types/node": "^24.13.3", - "happy-dom": "^20.11.2", + "@types/node": "^26.3.0", + "happy-dom": "^20.11.6", "rstack": "^0.6.4", "typescript": "^7.0.2" } diff --git a/packages/create-rstack/template-app-solid/package.json b/packages/create-rstack/template-app-solid/package.json index b9badb93..f3b4103d 100644 --- a/packages/create-rstack/template-app-solid/package.json +++ b/packages/create-rstack/template-app-solid/package.json @@ -21,7 +21,7 @@ "@rsbuild/plugin-solid": "^1.2.2", "@solidjs/testing-library": "^0.8.10", "@testing-library/jest-dom": "^7.0.1", - "happy-dom": "^20.11.2", + "happy-dom": "^20.11.6", "rstack": "^0.6.4" } } diff --git a/packages/create-rstack/template-app-svelte-ts/package.json b/packages/create-rstack/template-app-svelte-ts/package.json index 97acb112..5a8c1078 100644 --- a/packages/create-rstack/template-app-svelte-ts/package.json +++ b/packages/create-rstack/template-app-svelte-ts/package.json @@ -14,14 +14,14 @@ "test:watch": "rs test --watch" }, "dependencies": { - "svelte": "^5.56.9" + "svelte": "^5.56.10" }, "devDependencies": { "@rsbuild/plugin-svelte": "^2.0.1", "@testing-library/jest-dom": "^7.0.1", "@testing-library/svelte": "^5.4.2", - "@types/node": "^24.13.3", - "happy-dom": "^20.11.2", + "@types/node": "^26.3.0", + "happy-dom": "^20.11.6", "prettier-plugin-svelte": "^4.1.1", "rstack": "^0.6.4", "svelte-check": "^4.7.6", diff --git a/packages/create-rstack/template-app-svelte/package.json b/packages/create-rstack/template-app-svelte/package.json index 651f7f31..05cca922 100644 --- a/packages/create-rstack/template-app-svelte/package.json +++ b/packages/create-rstack/template-app-svelte/package.json @@ -14,13 +14,13 @@ "test:watch": "rs test --watch" }, "dependencies": { - "svelte": "^5.56.9" + "svelte": "^5.56.10" }, "devDependencies": { "@rsbuild/plugin-svelte": "^2.0.1", "@testing-library/jest-dom": "^7.0.1", "@testing-library/svelte": "^5.4.2", - "happy-dom": "^20.11.2", + "happy-dom": "^20.11.6", "prettier-plugin-svelte": "^4.1.1", "rstack": "^0.6.4" } diff --git a/packages/create-rstack/template-app-vanilla-ts/package.json b/packages/create-rstack/template-app-vanilla-ts/package.json index 8ae3628d..042d0f68 100644 --- a/packages/create-rstack/template-app-vanilla-ts/package.json +++ b/packages/create-rstack/template-app-vanilla-ts/package.json @@ -16,8 +16,8 @@ "devDependencies": { "@testing-library/dom": "^10.4.1", "@testing-library/jest-dom": "^7.0.1", - "@types/node": "^24.13.3", - "happy-dom": "^20.11.2", + "@types/node": "^26.3.0", + "happy-dom": "^20.11.6", "rstack": "^0.6.4", "typescript": "^7.0.2" } diff --git a/packages/create-rstack/template-app-vanilla/package.json b/packages/create-rstack/template-app-vanilla/package.json index f23e19e7..595492be 100644 --- a/packages/create-rstack/template-app-vanilla/package.json +++ b/packages/create-rstack/template-app-vanilla/package.json @@ -16,7 +16,7 @@ "devDependencies": { "@testing-library/dom": "^10.4.1", "@testing-library/jest-dom": "^7.0.1", - "happy-dom": "^20.11.2", + "happy-dom": "^20.11.6", "rstack": "^0.6.4" } } diff --git a/packages/create-rstack/template-app-vue-ts/package.json b/packages/create-rstack/template-app-vue-ts/package.json index 60102f5a..3c50bb7d 100644 --- a/packages/create-rstack/template-app-vue-ts/package.json +++ b/packages/create-rstack/template-app-vue-ts/package.json @@ -19,11 +19,11 @@ "devDependencies": { "@rsbuild/plugin-vue": "^2.0.1", "@testing-library/jest-dom": "^7.0.1", - "@types/node": "^24.13.3", + "@types/node": "^26.3.0", "@vue/test-utils": "^2.4.11", - "happy-dom": "^20.11.2", + "happy-dom": "^20.11.6", "rstack": "^0.6.4", "typescript": "^6.0.3", - "vue-tsc": "^3.3.10" + "vue-tsc": "^3.3.11" } } diff --git a/packages/create-rstack/template-app-vue/package.json b/packages/create-rstack/template-app-vue/package.json index 7a617276..e988f1c7 100644 --- a/packages/create-rstack/template-app-vue/package.json +++ b/packages/create-rstack/template-app-vue/package.json @@ -20,7 +20,7 @@ "@rsbuild/plugin-vue": "^2.0.1", "@testing-library/jest-dom": "^7.0.1", "@vue/test-utils": "^2.4.11", - "happy-dom": "^20.11.2", + "happy-dom": "^20.11.6", "rstack": "^0.6.4" } } diff --git a/packages/create-rstack/template-doc-i18n/package.json b/packages/create-rstack/template-doc-i18n/package.json index 67b5bb96..d0e3f0ca 100644 --- a/packages/create-rstack/template-doc-i18n/package.json +++ b/packages/create-rstack/template-doc-i18n/package.json @@ -12,10 +12,10 @@ "preview": "rs doc preview" }, "devDependencies": { - "@rspress/core": "^2.0.19", - "@types/node": "^24.13.3", + "@rspress/core": "^2.0.20", + "@types/node": "^26.3.0", "@types/react": "^19.2.18", - "@types/react-dom": "^19.2.4", + "@types/react-dom": "^19.2.5", "react": "^19.2.8", "react-dom": "^19.2.8", "rstack": "^0.6.4", diff --git a/packages/create-rstack/template-doc/package.json b/packages/create-rstack/template-doc/package.json index e4566431..e406861a 100644 --- a/packages/create-rstack/template-doc/package.json +++ b/packages/create-rstack/template-doc/package.json @@ -12,10 +12,10 @@ "preview": "rs doc preview" }, "devDependencies": { - "@rspress/core": "^2.0.19", - "@types/node": "^24.13.3", + "@rspress/core": "^2.0.20", + "@types/node": "^26.3.0", "@types/react": "^19.2.18", - "@types/react-dom": "^19.2.4", + "@types/react-dom": "^19.2.5", "react": "^19.2.8", "react-dom": "^19.2.8", "rstack": "^0.6.4", diff --git a/packages/create-rstack/template-lib-node-ts/package.json b/packages/create-rstack/template-lib-node-ts/package.json index 8eeb57ee..edf088dd 100644 --- a/packages/create-rstack/template-lib-node-ts/package.json +++ b/packages/create-rstack/template-lib-node-ts/package.json @@ -24,7 +24,7 @@ "test:watch": "rs test --watch" }, "devDependencies": { - "@types/node": "^24.13.3", + "@types/node": "^26.3.0", "rstack": "^0.6.4", "typescript": "^7.0.2" }, diff --git a/packages/create-rstack/template-lib-react-ts/package.json b/packages/create-rstack/template-lib-react-ts/package.json index 7f36e9c2..0d472104 100644 --- a/packages/create-rstack/template-lib-react-ts/package.json +++ b/packages/create-rstack/template-lib-react-ts/package.json @@ -27,10 +27,10 @@ "@testing-library/dom": "^10.4.1", "@testing-library/jest-dom": "^7.0.1", "@testing-library/react": "^16.3.2", - "@types/node": "^24.13.3", + "@types/node": "^26.3.0", "@types/react": "^19.2.18", - "@types/react-dom": "^19.2.4", - "happy-dom": "^20.11.2", + "@types/react-dom": "^19.2.5", + "happy-dom": "^20.11.6", "react": "^19.2.8", "react-dom": "^19.2.8", "rstack": "^0.6.4", diff --git a/packages/create-rstack/template-lib-react/package.json b/packages/create-rstack/template-lib-react/package.json index f318cef8..130852cf 100644 --- a/packages/create-rstack/template-lib-react/package.json +++ b/packages/create-rstack/template-lib-react/package.json @@ -21,8 +21,8 @@ "@testing-library/dom": "^10.4.1", "@testing-library/jest-dom": "^7.0.1", "@testing-library/react": "^16.3.2", - "@types/react-dom": "^19.2.4", - "happy-dom": "^20.11.2", + "@types/react-dom": "^19.2.5", + "happy-dom": "^20.11.6", "react": "^19.2.8", "react-dom": "^19.2.8", "rstack": "^0.6.4" diff --git a/packages/create-rstack/template-lib-solid-ts/package.json b/packages/create-rstack/template-lib-solid-ts/package.json index 1bc5d337..63e5d3a6 100644 --- a/packages/create-rstack/template-lib-solid-ts/package.json +++ b/packages/create-rstack/template-lib-solid-ts/package.json @@ -28,8 +28,8 @@ "@rsbuild/plugin-solid": "^1.2.2", "@solidjs/testing-library": "^0.8.10", "@testing-library/jest-dom": "^7.0.1", - "@types/node": "^24.13.3", - "happy-dom": "^20.11.2", + "@types/node": "^26.3.0", + "happy-dom": "^20.11.6", "rstack": "^0.6.4", "solid-js": "^1.9.15", "typescript": "^7.0.2" diff --git a/packages/create-rstack/template-lib-solid/package.json b/packages/create-rstack/template-lib-solid/package.json index 7e54da13..1f0773a1 100644 --- a/packages/create-rstack/template-lib-solid/package.json +++ b/packages/create-rstack/template-lib-solid/package.json @@ -26,7 +26,7 @@ "@rsbuild/plugin-solid": "^1.2.2", "@solidjs/testing-library": "^0.8.10", "@testing-library/jest-dom": "^7.0.1", - "happy-dom": "^20.11.2", + "happy-dom": "^20.11.6", "rstack": "^0.6.4", "solid-js": "^1.9.15" }, diff --git a/packages/create-rstack/template-lib-svelte-ts/package.json b/packages/create-rstack/template-lib-svelte-ts/package.json index 59d50628..42af06ab 100644 --- a/packages/create-rstack/template-lib-svelte-ts/package.json +++ b/packages/create-rstack/template-lib-svelte-ts/package.json @@ -24,11 +24,11 @@ }, "devDependencies": { "@rsbuild/plugin-svelte": "^2.0.1", - "@types/node": "^24.13.3", - "happy-dom": "^20.11.2", + "@types/node": "^26.3.0", + "happy-dom": "^20.11.6", "prettier-plugin-svelte": "^4.1.1", "rstack": "^0.6.4", - "svelte": "^5.56.9", + "svelte": "^5.56.10", "svelte-check": "^4.7.6", "svelte2tsx": "^0.7.61", "typescript": "^6.0.3" diff --git a/packages/create-rstack/template-lib-svelte/package.json b/packages/create-rstack/template-lib-svelte/package.json index 5c7ca3da..39f0043f 100644 --- a/packages/create-rstack/template-lib-svelte/package.json +++ b/packages/create-rstack/template-lib-svelte/package.json @@ -18,10 +18,10 @@ }, "devDependencies": { "@rsbuild/plugin-svelte": "^2.0.1", - "happy-dom": "^20.11.2", + "happy-dom": "^20.11.6", "prettier-plugin-svelte": "^4.1.1", "rstack": "^0.6.4", - "svelte": "^5.56.9" + "svelte": "^5.56.10" }, "peerDependencies": { "svelte": "^5.0.0" diff --git a/packages/create-rstack/template-lib-vue-ts/package.json b/packages/create-rstack/template-lib-vue-ts/package.json index 85b9c79a..6615d760 100644 --- a/packages/create-rstack/template-lib-vue-ts/package.json +++ b/packages/create-rstack/template-lib-vue-ts/package.json @@ -25,13 +25,13 @@ "devDependencies": { "@rsbuild/plugin-vue": "^2.0.1", "@testing-library/jest-dom": "^7.0.1", - "@types/node": "^24.13.3", + "@types/node": "^26.3.0", "@vue/test-utils": "^2.4.11", - "happy-dom": "^20.11.2", + "happy-dom": "^20.11.6", "rstack": "^0.6.4", "typescript": "^6.0.3", "vue": "^3.5.41", - "vue-tsc": "^3.3.10" + "vue-tsc": "^3.3.11" }, "peerDependencies": { "vue": ">=3.2.0" diff --git a/packages/create-rstack/template-lib-vue/package.json b/packages/create-rstack/template-lib-vue/package.json index eff5ec7d..02fe56f3 100644 --- a/packages/create-rstack/template-lib-vue/package.json +++ b/packages/create-rstack/template-lib-vue/package.json @@ -20,7 +20,7 @@ "@rsbuild/plugin-vue": "^2.0.1", "@testing-library/jest-dom": "^7.0.1", "@vue/test-utils": "^2.4.11", - "happy-dom": "^20.11.2", + "happy-dom": "^20.11.6", "rstack": "^0.6.4", "vue": "^3.5.41" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9a78c2cb..07287cda 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -11,8 +11,8 @@ catalogs: specifier: ^3.8.6 version: 3.8.6 '@rsbuild/core': - specifier: ~2.1.13 - version: 2.1.13 + specifier: ~2.2.0 + version: 2.2.0 '@rsbuild/plugin-react': specifier: ^2.1.0 version: 2.1.0 @@ -20,26 +20,26 @@ catalogs: specifier: ^2.0.1 version: 2.0.1 '@rslib/core': - specifier: ~1.0.0-rc.1 - version: 1.0.0-rc.1 + specifier: ~1.0.0-rc.2 + version: 1.0.0-rc.2 '@rslint/core': specifier: ~0.8.1 version: 0.8.1 '@rspress/core': - specifier: ^2.0.19 - version: 2.0.19 + specifier: ^2.0.20 + version: 2.0.20 '@rspress/plugin-client-redirects': - specifier: ^2.0.19 - version: 2.0.19 + specifier: ^2.0.20 + version: 2.0.20 '@rspress/plugin-sitemap': - specifier: ^2.0.19 - version: 2.0.19 + specifier: ^2.0.20 + version: 2.0.20 '@rstack-dev/doc-ui': specifier: 1.14.8 version: 1.14.8 '@rstackjs/create-toolkit': - specifier: 2.2.3 - version: 2.2.3 + specifier: 2.2.4 + version: 2.2.4 '@rstackjs/load-config': specifier: ^0.1.2 version: 0.1.2 @@ -47,14 +47,14 @@ catalogs: specifier: ^0.2.0 version: 0.2.0 '@rstest/adapter-rsbuild': - specifier: ~0.11.8 - version: 0.11.8 + specifier: ~0.11.10 + version: 0.11.10 '@rstest/adapter-rslib': - specifier: ~0.11.8 - version: 0.11.8 + specifier: ~0.11.10 + version: 0.11.10 '@rstest/core': - specifier: ~0.11.8 - version: 0.11.8 + specifier: ~0.11.10 + version: 0.11.10 '@shikijs/transformers': specifier: ^4.4.3 version: 4.4.3 @@ -71,14 +71,14 @@ catalogs: specifier: ^4.0.10 version: 4.0.10 '@types/node': - specifier: ^24.13.3 - version: 24.13.3 + specifier: ^26.3.0 + version: 26.3.0 '@types/react': specifier: ^19.2.18 version: 19.2.18 '@types/react-dom': - specifier: ^19.2.4 - version: 19.2.4 + specifier: ^19.2.5 + version: 19.2.5 cspell-ban-words: specifier: ^0.0.4 version: 0.0.4 @@ -86,11 +86,11 @@ catalogs: specifier: 2.1.0 version: 2.1.0 happy-dom: - specifier: ^20.11.2 - version: 20.11.2 + specifier: ^20.11.6 + version: 20.11.6 heading-case: - specifier: ^1.1.5 - version: 1.1.5 + specifier: ^1.1.8 + version: 1.1.8 import-meta-resolve: specifier: 4.2.0 version: 4.2.0 @@ -128,14 +128,14 @@ catalogs: specifier: 4.0.0 version: 4.0.0 svelte: - specifier: ^5.56.9 - version: 5.56.9 + specifier: ^5.56.10 + version: 5.56.10 tiny-readdir: specifier: 3.1.1 version: 3.1.1 tinypool: - specifier: 2.1.0 - version: 2.1.0 + specifier: 2.1.2 + version: 2.1.2 typescript: specifier: ^7.0.2 version: 7.0.2 @@ -146,8 +146,8 @@ catalogs: specifier: 1.0.12 version: 1.0.12 yuku-parser: - specifier: 0.9.0 - version: 0.9.0 + specifier: 0.9.1 + version: 0.9.1 importers: @@ -155,13 +155,13 @@ importers: devDependencies: '@types/node': specifier: 'catalog:' - version: 24.13.3 + version: 26.3.0 cspell-ban-words: specifier: 'catalog:' version: 0.0.4 heading-case: specifier: 'catalog:' - version: 1.1.5 + version: 1.1.8 prettier: specifier: 'catalog:' version: 3.9.6 @@ -183,7 +183,7 @@ importers: devDependencies: '@rsbuild/plugin-react': specifier: 'catalog:' - version: 2.1.0(@rsbuild/core@2.1.10)(@rspack/core@2.1.10) + version: 2.1.0(@rsbuild/core@2.2.0)(@rspack/core@2.2.0) '@testing-library/dom': specifier: 'catalog:' version: 10.4.1 @@ -192,16 +192,16 @@ importers: version: 7.0.1(@testing-library/dom@10.4.1) '@testing-library/react': specifier: 'catalog:' - version: 16.3.2(@testing-library/dom@10.4.1)(@types/react-dom@19.2.4)(@types/react@19.2.18)(react-dom@19.2.8)(react@19.2.8) + version: 16.3.2(@testing-library/dom@10.4.1)(@types/react-dom@19.2.5)(@types/react@19.2.18)(react-dom@19.2.8)(react@19.2.8) '@types/react': specifier: 'catalog:' version: 19.2.18 '@types/react-dom': specifier: 'catalog:' - version: 19.2.4(@types/react@19.2.18) + version: 19.2.5(@types/react@19.2.18) happy-dom: specifier: 'catalog:' - version: 20.11.2 + version: 20.11.6 rstack: specifier: workspace:* version: link:../../packages/rstack @@ -219,10 +219,10 @@ importers: version: 7.0.1(@testing-library/dom@10.4.1) '@types/node': specifier: 'catalog:' - version: 24.13.3 + version: 26.3.0 happy-dom: specifier: 'catalog:' - version: 20.11.2 + version: 20.11.6 rstack: specifier: workspace:* version: link:../../packages/rstack @@ -238,16 +238,16 @@ importers: devDependencies: '@rspress/core': specifier: 'catalog:' - version: 2.0.19(micromark-util-types@2.0.2)(micromark@4.0.2)(supports-color@8.1.1) + version: 2.0.20(micromark-util-types@2.0.2)(micromark@4.0.2)(supports-color@8.1.1) '@types/node': specifier: 'catalog:' - version: 24.13.3 + version: 26.3.0 '@types/react': specifier: 'catalog:' version: 19.2.18 '@types/react-dom': specifier: 'catalog:' - version: 19.2.4(@types/react@19.2.18) + version: 19.2.5(@types/react@19.2.18) react: specifier: 'catalog:' version: 19.2.8 @@ -259,7 +259,7 @@ importers: devDependencies: '@types/node': specifier: 'catalog:' - version: 24.13.3 + version: 26.3.0 rstack: specifier: workspace:* version: link:../../packages/rstack @@ -271,7 +271,7 @@ importers: devDependencies: '@rsbuild/plugin-react': specifier: 'catalog:' - version: 2.1.0(@rsbuild/core@2.1.10)(@rspack/core@2.1.10) + version: 2.1.0(@rsbuild/core@2.2.0)(@rspack/core@2.2.0) '@testing-library/dom': specifier: 'catalog:' version: 10.4.1 @@ -280,16 +280,16 @@ importers: version: 7.0.1(@testing-library/dom@10.4.1) '@testing-library/react': specifier: 'catalog:' - version: 16.3.2(@testing-library/dom@10.4.1)(@types/react-dom@19.2.4)(@types/react@19.2.18)(react-dom@19.2.8)(react@19.2.8) + version: 16.3.2(@testing-library/dom@10.4.1)(@types/react-dom@19.2.5)(@types/react@19.2.18)(react-dom@19.2.8)(react@19.2.8) '@types/react': specifier: 'catalog:' version: 19.2.18 '@types/react-dom': specifier: 'catalog:' - version: 19.2.4(@types/react@19.2.18) + version: 19.2.5(@types/react@19.2.18) happy-dom: specifier: 'catalog:' - version: 20.11.2 + version: 20.11.6 react: specifier: 'catalog:' version: 19.2.8 @@ -314,25 +314,25 @@ importers: devDependencies: '@rsbuild/plugin-react': specifier: 'catalog:' - version: 2.1.0(@rsbuild/core@2.1.13)(@rspack/core@2.1.10) + version: 2.1.0(@rsbuild/core@2.2.0)(@rspack/core@2.2.0) '@testing-library/dom': specifier: 'catalog:' version: 10.4.1 '@testing-library/react': specifier: 'catalog:' - version: 16.3.2(@testing-library/dom@10.4.1)(@types/react-dom@19.2.4)(@types/react@19.2.18)(react-dom@19.2.8)(react@19.2.8) + version: 16.3.2(@testing-library/dom@10.4.1)(@types/react-dom@19.2.5)(@types/react@19.2.18)(react-dom@19.2.8)(react@19.2.8) '@types/node': specifier: 'catalog:' - version: 24.13.3 + version: 26.3.0 '@types/react': specifier: 'catalog:' version: 19.2.18 '@types/react-dom': specifier: 'catalog:' - version: 19.2.4(@types/react@19.2.18) + version: 19.2.5(@types/react@19.2.18) happy-dom: specifier: 'catalog:' - version: 20.11.2 + version: 20.11.6 rstack: specifier: workspace:* version: link:../../packages/rstack @@ -344,11 +344,11 @@ importers: dependencies: '@rstackjs/create-toolkit': specifier: 'catalog:' - version: 2.2.3 + version: 2.2.4 devDependencies: '@types/node': specifier: 'catalog:' - version: 24.13.3 + version: 26.3.0 rstack: specifier: workspace:* version: link:../rstack @@ -360,32 +360,32 @@ importers: dependencies: '@rsbuild/core': specifier: 'catalog:' - version: 2.1.13 + version: 2.2.0 '@rslib/core': specifier: 'catalog:' - version: 1.0.0-rc.1(typescript@7.0.2) + version: 1.0.0-rc.2(typescript@7.0.2) '@rslint/core': specifier: 'catalog:' version: 0.8.1 '@rstest/core': specifier: 'catalog:' - version: 0.11.8(happy-dom@20.11.2) + version: 0.11.10(happy-dom@20.11.6) prettier: specifier: 'catalog:' version: 3.9.6 tinypool: specifier: 'catalog:' - version: 2.1.0 + version: 2.1.2 yuku-parser: specifier: 'catalog:' - version: 0.9.0 + version: 0.9.1 devDependencies: '@napi-rs/cli': specifier: 'catalog:' - version: 3.8.6(@emnapi/core@1.11.3)(@emnapi/runtime@1.11.3)(@types/node@24.13.3)(supports-color@8.1.1) + version: 3.8.6(@emnapi/core@1.11.3)(@emnapi/runtime@1.11.3)(@types/node@26.3.0)(supports-color@8.1.1) '@rspress/core': specifier: 'catalog:' - version: 2.0.19(micromark-util-types@2.0.2)(micromark@4.0.2)(supports-color@8.1.1) + version: 2.0.20(micromark-util-types@2.0.2)(micromark@4.0.2)(supports-color@8.1.1) '@rstackjs/load-config': specifier: 'catalog:' version: 0.1.2 @@ -394,16 +394,16 @@ importers: version: 0.2.0 '@rstest/adapter-rsbuild': specifier: 'catalog:' - version: 0.11.8(@rsbuild/core@2.1.13)(@rstest/core@0.11.8) + version: 0.11.10(@rsbuild/core@2.2.0)(@rstest/core@0.11.10) '@rstest/adapter-rslib': specifier: 'catalog:' - version: 0.11.8(@rslib/core@1.0.0-rc.1)(@rstest/core@0.11.8)(typescript@7.0.2) + version: 0.11.10(@rslib/core@1.0.0-rc.2)(@rstest/core@0.11.10)(typescript@7.0.2) '@types/micromatch': specifier: 'catalog:' version: 4.0.10 '@types/node': specifier: 'catalog:' - version: 24.13.3 + version: 26.3.0 fast-json-stable-stringify: specifier: 'catalog:' version: 2.1.0 @@ -421,7 +421,7 @@ importers: version: 4.0.8 prettier-plugin-svelte: specifier: 'catalog:' - version: 4.1.1(prettier@3.9.6)(svelte@5.56.9) + version: 4.1.1(prettier@3.9.6)(svelte@5.56.10) rslog: specifier: 'catalog:' version: 2.3.0 @@ -430,7 +430,7 @@ importers: version: 4.0.0 svelte: specifier: 'catalog:' - version: 5.56.9 + version: 5.56.10 tiny-readdir: specifier: 'catalog:' version: 3.1.1 @@ -448,31 +448,31 @@ importers: devDependencies: '@rsbuild/plugin-sass': specifier: 'catalog:' - version: 2.0.1(@rsbuild/core@2.1.10) + version: 2.0.1(@rsbuild/core@2.2.0) '@rspress/core': specifier: 'catalog:' - version: 2.0.19(micromark-util-types@2.0.2)(micromark@4.0.2)(supports-color@8.1.1) + version: 2.0.20(micromark-util-types@2.0.2)(micromark@4.0.2)(supports-color@8.1.1) '@rspress/plugin-client-redirects': specifier: 'catalog:' - version: 2.0.19(@rspress/core@2.0.19) + version: 2.0.20(@rspress/core@2.0.20) '@rspress/plugin-sitemap': specifier: 'catalog:' - version: 2.0.19(@rspress/core@2.0.19) + version: 2.0.20(@rspress/core@2.0.20) '@rstack-dev/doc-ui': specifier: 'catalog:' - version: 1.14.8(@rspress/core@2.0.19) + version: 1.14.8(@rspress/core@2.0.20) '@shikijs/transformers': specifier: 'catalog:' version: 4.4.3 '@types/node': specifier: 'catalog:' - version: 24.13.3 + version: 26.3.0 '@types/react': specifier: 'catalog:' version: 19.2.18 '@types/react-dom': specifier: 'catalog:' - version: 19.2.4(@types/react@19.2.18) + version: 19.2.5(@types/react@19.2.18) react: specifier: 'catalog:' version: 19.2.8 @@ -481,10 +481,10 @@ importers: version: 19.2.8(react@19.2.8) rsbuild-plugin-open-graph: specifier: 'catalog:' - version: 1.1.3(@rsbuild/core@2.1.10) + version: 1.1.3(@rsbuild/core@2.2.0) rspress-plugin-font-open-sans: specifier: 'catalog:' - version: 1.0.4(@rspress/core@2.0.19) + version: 1.0.4(@rspress/core@2.0.20) rstack: specifier: workspace:* version: link:../packages/rstack @@ -1265,26 +1265,6 @@ packages: resolution: {integrity: sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==} engines: {node: '>= 10.0.0'} - '@rsbuild/core@2.1.10': - resolution: {integrity: sha512-lwxC5w88U2AMv6aNwG3VH7+AV33N4JJQjD//egVWFsMbV+OE/bnfCsurSpX8s3lGyRYkJMwUVN+YXMbmmYZFfw==} - engines: {node: ^20.19.0 || >=22.12.0} - hasBin: true - peerDependencies: - core-js: '>= 3.0.0' - peerDependenciesMeta: - core-js: - optional: true - - '@rsbuild/core@2.1.12': - resolution: {integrity: sha512-xRqNHj/svDqeUzXPahmN4BdxEFCU1rxnVdjxyVV7WgsFfH+L3yAoQMJtIXVGhr00IQseDKkc3eonMF3NGrFj2Q==} - engines: {node: ^20.19.0 || >=22.12.0} - hasBin: true - peerDependencies: - core-js: '>= 3.0.0' - peerDependenciesMeta: - core-js: - optional: true - '@rsbuild/core@2.1.13': resolution: {integrity: sha512-Z+6MzmjOio4+bFZQ24k+7ge/oNCOdXIunAssrswTNE8AIf6mcyXpJZevRXRiOEMZasRPA8VNyh+9JngQLg729Q==} engines: {node: ^20.19.0 || >=22.12.0} @@ -1295,8 +1275,8 @@ packages: core-js: optional: true - '@rsbuild/core@2.2.0-rc.0': - resolution: {integrity: sha512-f6orjv+wOR1u7KchE/vANGP0Eg7AP0UaiM0qn4n+5I0HOUdkVVbNCA1eZSpyX+TJ9bIdZtkbR6T47vBdoFr1MA==} + '@rsbuild/core@2.2.0': + resolution: {integrity: sha512-UnBBfxWIDKVdLz2BUBq7hFBatwLclJ4moFhlDFg+pFBPPJ1g34MmCbGUC0c9Mo1DhPGdYJG69qMIldh5MvC74w==} engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: @@ -1321,8 +1301,8 @@ packages: '@rsbuild/core': optional: true - '@rslib/core@1.0.0-rc.1': - resolution: {integrity: sha512-xKK79mKdxhqi+tNpbIaJgAUWv1RkH5En+W6eBflXUJGhoSacx97iCoLLQl9mAIti0c7l3zpGlvOlnwxTP2llaQ==} + '@rslib/core@1.0.0-rc.2': + resolution: {integrity: sha512-6Bex+f8THioCRtfVg8cswHWR4T1xwY+VxRXoOXIgGBROTMlCuoS2/TzcLwYHmU1q1FXfXM8zAs0XuEnUAoDXzQ==} engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: @@ -1392,13 +1372,8 @@ packages: cpu: [arm64] os: [darwin] - '@rspack/binding-darwin-arm64@2.1.8': - resolution: {integrity: sha512-kia+eWtyWPvR4ntg1bWYoVU8nLPbUg2fG3zgBEocsTcsh5ZENSiEPxEKymDgMyIMONUqj611E0775cdUBoNmqw==} - cpu: [arm64] - os: [darwin] - - '@rspack/binding-darwin-arm64@2.2.0-rc.0': - resolution: {integrity: sha512-Uvy3YnN1pCLe+2/8hF06KiCPegf8ztOuM3VE/p0MJKRitkL5DPoZVHyc40zl6e+O5WB/9tJ5tnEgRG9pDWxFng==} + '@rspack/binding-darwin-arm64@2.2.0': + resolution: {integrity: sha512-KAVVT7hp3NBjtc/RY2UtOjzzc8i+s4pIhW1p52UV+Aev6ywQCu3dXwkHTonpPvJO3hqLXc4zIMH5l4HbMqBm4g==} cpu: [arm64] os: [darwin] @@ -1407,13 +1382,8 @@ packages: cpu: [x64] os: [darwin] - '@rspack/binding-darwin-x64@2.1.8': - resolution: {integrity: sha512-08pBkFhlD3Y3Qzh94w/Fc3skaIE3e96kl2P14m8+tnYTcglpOfpA2OwS3iHt9fOqy0HjoAVe6/MW3cBgs5iabA==} - cpu: [x64] - os: [darwin] - - '@rspack/binding-darwin-x64@2.2.0-rc.0': - resolution: {integrity: sha512-UQO0PgLarsA0lv96uqCTAH1eAnAIPHb+qhMfds5ubWKZgKlr0taGQl253C3DN5pfzbHWfNQgAfVUaVMydm9czw==} + '@rspack/binding-darwin-x64@2.2.0': + resolution: {integrity: sha512-rzyJCX99aFwl540trsVMNZOgK4+IFm2d5+YeP+RdNo9Uprxloz8vHz0J4dYtaq6MRiCAyM60dAwEa3wJMwqWAQ==} cpu: [x64] os: [darwin] @@ -1423,14 +1393,8 @@ packages: os: [linux] libc: [glibc] - '@rspack/binding-linux-arm64-gnu@2.1.8': - resolution: {integrity: sha512-KLniMc9GzhKpVqhPzaJo3KJwzdAllXVVqZIk/uL1QipXOxs57fgM4u7IexKPFVla0o/u1PQG/Ah2YLDmda24Ow==} - cpu: [arm64] - os: [linux] - libc: [glibc] - - '@rspack/binding-linux-arm64-gnu@2.2.0-rc.0': - resolution: {integrity: sha512-ZggL6W9ckpvhqIPi7K3zDRiEaQd5Co2qRnN5J8OMmBkQlvYQek0CE/SZHFcZsDM0//6+0mkI+VjaTeWdvqJsaQ==} + '@rspack/binding-linux-arm64-gnu@2.2.0': + resolution: {integrity: sha512-0t8QOiOMcBV7RvPSsTJ5DQ4QCK6FIyUZy77qbxnS6asGTOXPZZn7V5cL26IxEv/wuHdQ6tQOXheau1fi+gGyBQ==} cpu: [arm64] os: [linux] libc: [glibc] @@ -1441,14 +1405,8 @@ packages: os: [linux] libc: [musl] - '@rspack/binding-linux-arm64-musl@2.1.8': - resolution: {integrity: sha512-yUKAxHNGnICtw5RnxFWu4dHtsz/tdt7rbeFcsINNVre9HcrRxf5XP+FbOGL/SMxd9oM9XCo10paU2WckTKwbEA==} - cpu: [arm64] - os: [linux] - libc: [musl] - - '@rspack/binding-linux-arm64-musl@2.2.0-rc.0': - resolution: {integrity: sha512-MfDTg9fn/17lRtGMsHLK8BQJs+AEtTsVMWOg1CMou/ls8IrucXoFZ9Ux0i2Jq1ph1ZiKgr4l7pMzdk3SXpNiQg==} + '@rspack/binding-linux-arm64-musl@2.2.0': + resolution: {integrity: sha512-BAvCukqcuHxUdE294ITCohvhVkEklW8RbkKkR36Uo0WyIiMPGrnvPjARPn0/4Q4xMAz7lUmC60sZrvJHlAOKMw==} cpu: [arm64] os: [linux] libc: [musl] @@ -1459,8 +1417,8 @@ packages: os: [linux] libc: [glibc] - '@rspack/binding-linux-ppc64-gnu@2.2.0-rc.0': - resolution: {integrity: sha512-n84s99eIMr/4xQ1XCctxtu4AnchukynuyJ4DaJ4vlcRKVdFAnPSpUH669rAxztsby5xa3ftAASmxwXhMUFzMsg==} + '@rspack/binding-linux-ppc64-gnu@2.2.0': + resolution: {integrity: sha512-nCHqZLv/E8nm2ccGkb00F5DQtXxzGy3W3X73ArA+N0+zXJUnzRcSRSwr7AE8pVgP/FYfX4yMFgUXy0g0YxYGRA==} cpu: [ppc64] os: [linux] libc: [glibc] @@ -1471,14 +1429,8 @@ packages: os: [linux] libc: [glibc] - '@rspack/binding-linux-riscv64-gnu@2.1.8': - resolution: {integrity: sha512-gg4S1jaitwYPHR9HZ3zNGH1EK2GXINm66p4kEpOP1gbc+akyOouVF/dMcu9NGPlRg58FbEhVRZYKu7Z/zcpKHg==} - cpu: [riscv64] - os: [linux] - libc: [glibc] - - '@rspack/binding-linux-riscv64-gnu@2.2.0-rc.0': - resolution: {integrity: sha512-s5bg/LlwnMSVXZfR16KGO3jVWUpobbPp90qE2DXwfaFpcLmMweUnANERM2mCpIiW3MuVnTAXTEjvEcxfB4mXEw==} + '@rspack/binding-linux-riscv64-gnu@2.2.0': + resolution: {integrity: sha512-CA3WEqKFDI6FAZTnCho2n9pmdPWZYAW/S8mqgxd0cx2Jix43at3VyLxhCC7ED5A9WBSFn/AdHaIbVtgoQHVhWA==} cpu: [riscv64] os: [linux] libc: [glibc] @@ -1489,14 +1441,8 @@ packages: os: [linux] libc: [musl] - '@rspack/binding-linux-riscv64-musl@2.1.8': - resolution: {integrity: sha512-b/aU5j1h368SLNyz5u+flqpZVhzSZ1UIslaj9sZJuAvqkGWv3xsjc/28/PTo/RYXCxd0FNVAxTxWHKvRiAAS8w==} - cpu: [riscv64] - os: [linux] - libc: [musl] - - '@rspack/binding-linux-riscv64-musl@2.2.0-rc.0': - resolution: {integrity: sha512-XNjEnkrNv67CZ4/IhkPQVfNkz9JHevelgZspzuuJOOyn+Z9b1m8JN+shv5Kq06sSudN9aQpLLa6slbHlKGv9lA==} + '@rspack/binding-linux-riscv64-musl@2.2.0': + resolution: {integrity: sha512-kHB960oClkoPRPZ6sdkhRvqbdRIlbpIMYd/Tbxfmn3DWQahiCk1pkUFJbOtFq3EgESxZISV4THl442W2Y57HvQ==} cpu: [riscv64] os: [linux] libc: [musl] @@ -1507,8 +1453,8 @@ packages: os: [linux] libc: [glibc] - '@rspack/binding-linux-s390x-gnu@2.2.0-rc.0': - resolution: {integrity: sha512-OQpj1j6Jfy+YBYDSGwJisZZEXS3g0Y/M5xlb26yqlZBKA/7kamCMDccUPTKNpuJaRQXK1DUerBsA+AK8TELG3g==} + '@rspack/binding-linux-s390x-gnu@2.2.0': + resolution: {integrity: sha512-lVBdiffVo1jq0P0jT36jNou2suLB4ueQI4aWUs+HM+h67YPBtVKWu/mo5Wh59+8nowgcZmYaFM5hdH69963I9w==} cpu: [s390x] os: [linux] libc: [glibc] @@ -1519,14 +1465,8 @@ packages: os: [linux] libc: [glibc] - '@rspack/binding-linux-x64-gnu@2.1.8': - resolution: {integrity: sha512-EyegohSx0BJRqieCg9f/caCqFARRWkqI5hwJt6k530MoOTLeq8I3vsbeg24/2MktwIC1dmJi8bl0+WhPKQs4eQ==} - cpu: [x64] - os: [linux] - libc: [glibc] - - '@rspack/binding-linux-x64-gnu@2.2.0-rc.0': - resolution: {integrity: sha512-1QoW+7zjApCgL4v5P14AmnxfvOMCk131abSBCl/+u6h/aIainSwpf+O3ar0FqvkQaSPPOQJrg03ys57WyEwlAQ==} + '@rspack/binding-linux-x64-gnu@2.2.0': + resolution: {integrity: sha512-M49UaWspE0YJ3268DsquD8idEQTfjBDMvO/I8qccV/Z5T+Q98FJ+kIs5liUaTWb48OIbDEK+8ZKx5QzLbfVN6g==} cpu: [x64] os: [linux] libc: [glibc] @@ -1537,14 +1477,8 @@ packages: os: [linux] libc: [musl] - '@rspack/binding-linux-x64-musl@2.1.8': - resolution: {integrity: sha512-I6E+goN+UQ297q4r1qdbiAyNCI3t0+a5Y0xDIAPOZfRDRxDTnH/LF8/y65gjsJoKRKyn7zxRC0T/NURTkRNQ9A==} - cpu: [x64] - os: [linux] - libc: [musl] - - '@rspack/binding-linux-x64-musl@2.2.0-rc.0': - resolution: {integrity: sha512-KLN4bIC3M1dSEuPBX1SPOEkBRyZnnIx8vBjfIFFpKa1bw/CsOHDF7Y6IAAsf9hir7dH3cUd4vaPSCVRM4KiTDw==} + '@rspack/binding-linux-x64-musl@2.2.0': + resolution: {integrity: sha512-YYbs0wmey+5blhEQDE4Dax3TwJtqfGwe2QBm3OLphlBHo/fcZVvimzKkMV0/pVrZTLy2z5ZAwNhGMY64bNr77w==} cpu: [x64] os: [linux] libc: [musl] @@ -1553,12 +1487,8 @@ packages: resolution: {integrity: sha512-KY5YbWbuvYcoaLXnV+vzZOvGRCeb6jt4EpVpKdph1h1IJjwX/ju15EQ+GOe3iecZEdf0OttQcNVcwBkLkFT9ag==} cpu: [wasm32] - '@rspack/binding-wasm32-wasi@2.1.8': - resolution: {integrity: sha512-om7GAKWAU3lcSvbCon2m7mzw8v9OTrO2LW2MZ1lGe/uVJJmwGGkl9HVoXFyWFLrN6YVFyx8iP+AkN4owDWB9Cw==} - cpu: [wasm32] - - '@rspack/binding-wasm32-wasi@2.2.0-rc.0': - resolution: {integrity: sha512-2Vvtckz5DNghQKQKwghfM4j30MOu7t9J7mbUCCi7mTUccpy7Cnr0HPmSV9Jx4sUj6vgQEV+8lIAIxNDNtr0Vhg==} + '@rspack/binding-wasm32-wasi@2.2.0': + resolution: {integrity: sha512-rerLPTN/HD4EvLNWs3O2N+Eb37eGvLRIP3dXXc3n+UzTebOepAsahNn44vXeRBsE4m/pHkpDJjwgWTytgQ2gBw==} cpu: [wasm32] '@rspack/binding-win32-arm64-msvc@2.1.10': @@ -1566,13 +1496,8 @@ packages: cpu: [arm64] os: [win32] - '@rspack/binding-win32-arm64-msvc@2.1.8': - resolution: {integrity: sha512-WDnsP/SUb9zbxyGX9XjPw5AXrX86u5oidn0MDdfJduOOqdCSpHwmRjlQ8NUJhbBq9WqVJMFlcab7NwZVWX/yyg==} - cpu: [arm64] - os: [win32] - - '@rspack/binding-win32-arm64-msvc@2.2.0-rc.0': - resolution: {integrity: sha512-enPqTT2sdt6HgItyk6SA6ubvZ2UXkFIpwhsCuoL83z9vHoDw/Y8obC8L92nIuK6FDP17tokm/r1SFPhDZJIYcg==} + '@rspack/binding-win32-arm64-msvc@2.2.0': + resolution: {integrity: sha512-JUAmnbOQYGTRyX28vls/MOMonZWcmcCi5YtEq6YMc8Xqh3Qx0HUwaLM/I1xr/N9BX3b8CV0dQDOpNuBc2ei+CA==} cpu: [arm64] os: [win32] @@ -1581,13 +1506,8 @@ packages: cpu: [ia32] os: [win32] - '@rspack/binding-win32-ia32-msvc@2.1.8': - resolution: {integrity: sha512-QiMQMPNDiY3dhhaIdaFPzcPDC06cEYkNY89ea+EmDvNVgZq6V+2mFS/WnzZVMeEbGAYJCjsv/ABhhLT1hlYMvg==} - cpu: [ia32] - os: [win32] - - '@rspack/binding-win32-ia32-msvc@2.2.0-rc.0': - resolution: {integrity: sha512-qYeZLJDfboqkWmNcqazjUcld2QegyErDJVaCfAPm2mnneMmKhQWsOs/DmlqRfC4ePaQN9uOtu26iLwKy2o1sgw==} + '@rspack/binding-win32-ia32-msvc@2.2.0': + resolution: {integrity: sha512-wOmQRUaOG0eWH/fnfslA9yK9xKfaq9X+3Xa1TdTJnTqlo0ARJYs6A+Lzjbs7cxdY/o1f12Xe00BG3nQozReUOg==} cpu: [ia32] os: [win32] @@ -1596,24 +1516,16 @@ packages: cpu: [x64] os: [win32] - '@rspack/binding-win32-x64-msvc@2.1.8': - resolution: {integrity: sha512-b7sA5eB64vo2mbsuc//MOYzVLeCKHPn0dfP/GmNEoHdWbhRgZ/orZLWurYMQj04ELTLW6YCJEy59g5KRzNYHfw==} - cpu: [x64] - os: [win32] - - '@rspack/binding-win32-x64-msvc@2.2.0-rc.0': - resolution: {integrity: sha512-bvzp27ZvpZW1vcCG/srk/K/6cffcR/kqDUcW8dWEMFlntPSBTml9lOC4ouSBpU7n/qIwG6hKE56FaTWWapc3Lw==} + '@rspack/binding-win32-x64-msvc@2.2.0': + resolution: {integrity: sha512-v6/3bFr9+i7hRpgulL9b5qCvZL0VgR4vQGQNqOWezUzZmPUj9LYpvB0L9xZIVwDQ2ug/xBiA58bfg5IbESgoyw==} cpu: [x64] os: [win32] '@rspack/binding@2.1.10': resolution: {integrity: sha512-vnu/UP5HnrND15lO9+VeG6eUrbTyycHNQNQ3XEiRiFojuoiGZkIZC3Hbzr8qQH44C6vScPODEPvvIVvLcO2LpQ==} - '@rspack/binding@2.1.8': - resolution: {integrity: sha512-tmAyHzDbPiy8V7HvQqtuPsbs6dPgwV0YjzW5XrPRV9gzf+Hdm7pvsZJKE1QKO9WV5RuvGYav98xIX6O+abZxzQ==} - - '@rspack/binding@2.2.0-rc.0': - resolution: {integrity: sha512-/Q9ysTd5ajEbIS+Sv61trElR7pWAa5LvcWNrYT+AKI9APsVwy4Y3CIPjEkd7jYeNHl1PJWSLCOUy+BzRUICDUg==} + '@rspack/binding@2.2.0': + resolution: {integrity: sha512-nxZzJqqB0EmEKp6qjzFNkBb/SgGt0k0DSENrLvAJgvVvrm3waVsubD0cfxtPlZY/rd5SzadzxWGEHRyFcds5nA==} '@rspack/core@2.1.10': resolution: {integrity: sha512-YSS2/Xxz8uiG/KXDkqOoA3dTetNo/vysk7bAexQOrU8iuq7JuzDTTAwLKvWZnwmvME8M8m5wcM4YvfIwYmidHA==} @@ -1627,20 +1539,8 @@ packages: '@swc/helpers': optional: true - '@rspack/core@2.1.8': - resolution: {integrity: sha512-na1kyA6Mj8/LWw9O3A8NsrG9rNKN3Iq2WiXrEuIwsU5r/Nl/evm3hO7bWKHxgsRyydI6W7okwx3MXgf8rzel6g==} - engines: {node: ^20.19.0 || >=22.12.0} - peerDependencies: - '@module-federation/runtime-tools': ^0.24.1 || ^2.0.0 - '@swc/helpers': ^0.5.23 - peerDependenciesMeta: - '@module-federation/runtime-tools': - optional: true - '@swc/helpers': - optional: true - - '@rspack/core@2.2.0-rc.0': - resolution: {integrity: sha512-2LAdAFF/ZdnBRltI+IievGhysby9LESxvELxS1ZVkPc1F6ZAJ1skIcCNOLmfZeoYwQ5nXZjdUCbCf9MFDMWJjg==} + '@rspack/core@2.2.0': + resolution: {integrity: sha512-3W7oX0BAHbK4VlknH3lfyfRvupzxdZtyEa+DfKmdjzmIAcqYtHnFd0nLqp5dzitDPyDI1TIKkDhpB0AZJn0pVg==} engines: {node: ^20.19.0 || >=22.12.0} peerDependencies: '@module-federation/runtime-tools': ^0.24.1 || ^2.0.0 @@ -1660,25 +1560,25 @@ packages: '@rspack/core': optional: true - '@rspress/core@2.0.19': - resolution: {integrity: sha512-m0KfQNNXxjP975652nIOwUTqrvbJapRp4NpnoQMc5heawGhkC4+F7zTHvxY+huvzGYnKtL2fMMTrgWhEjKkrug==} + '@rspress/core@2.0.20': + resolution: {integrity: sha512-JR+hsQicVDQIj7122KyIJrkwZCuVEXZm4MDLcXaoBHdtMP3hoK6cp1ZXEb0LdnKwG2MduFlK6i+L7vGLrN8QZA==} engines: {node: ^20.19.0 || >=22.12.0} hasBin: true - '@rspress/plugin-client-redirects@2.0.19': - resolution: {integrity: sha512-BUwgEyj8vCkU58cV3Gp97aTSnfGJm7aXh40K0Dot1BqsCQ8ekdsMuaLXrICROdP9/ctd4oALtLBkOE+PKTa4Sg==} + '@rspress/plugin-client-redirects@2.0.20': + resolution: {integrity: sha512-uW/BW2cIZOC4fit6DDOs/ejaoGJqgbJNM25gQgLcgJUQ+eDgjjvxfjfPRL1NpYlF+XQm9NOWre8lxFM0Pv8zKg==} engines: {node: ^20.19.0 || >=22.12.0} peerDependencies: '@rspress/core': ^2.0.10 - '@rspress/plugin-sitemap@2.0.19': - resolution: {integrity: sha512-9ydrpj9hmmXWKWKIXUqJ1UrfxSvfxhHZRBZLb5OkTlOuQBNAg6BpsrW1WHoJqJr7p+3zqlz7S/9HTzSA3+EYcA==} + '@rspress/plugin-sitemap@2.0.20': + resolution: {integrity: sha512-B5yOTL+7vwTKjnb64/fAAoU9Bk8//jwAWN9U16O944r9IA56kaTHhxzwp/u215fJwjkhiYo8ujK5W9vwAl6rvw==} engines: {node: ^20.19.0 || >=22.12.0} peerDependencies: '@rspress/core': ^2.0.10 - '@rspress/shared@2.0.19': - resolution: {integrity: sha512-INrETllWuR49lksqCz+xeLSO6rKtHA+5Ix2YQWcP9nerCuTSyGYwH8eBC0HrIacJkGHxB8wkkbV99tyzGtY8Wg==} + '@rspress/shared@2.0.20': + resolution: {integrity: sha512-+e55crMZom5BQLgebrT4Pz4Zg0P7JIsYnDz4Ey65CTloFhfan1rARQpgb74b2bf5kKv/sPbPw6pfD8Fu74mCPQ==} '@rstack-dev/doc-ui@1.14.8': resolution: {integrity: sha512-CAibkpvCnJEcxsypu3ZE9JjtQw+1+iJGv9X09Yg4//9FevHpfaHW+b2onFG+Z/xOlUXGg83rJTb7CO6YbToP0w==} @@ -1688,8 +1588,8 @@ packages: '@rspress/core': optional: true - '@rstackjs/create-toolkit@2.2.3': - resolution: {integrity: sha512-0I1U/BGGLXBkvE+C9oDKYfmg1wjFMHCPQlG2BJF+f41kL0BmXZaQMa/m515lo8Q349otqyAEam4A5BMuxetTVw==} + '@rstackjs/create-toolkit@2.2.4': + resolution: {integrity: sha512-YVnA9aTZKPTql8Hzyf9o5chWAICNJ46CYoPwADrSObyBxF1jlvB5gO5M+yXYoZT/VNWh1Abm0TvTtmAh4EeT3A==} engines: {node: ^20.19.0 || >=22.12.0} '@rstackjs/load-config@0.1.2': @@ -1703,14 +1603,14 @@ packages: '@rstackjs/test-utils@0.2.0': resolution: {integrity: sha512-P+LOo1WE3xYeGkHmEthyq2cIpN69k4LhiB/4UBSceD+nW9hDlhWv8MC0LTLWokZXccWl4ntcfOBjQFllkcBlPA==} - '@rstest/adapter-rsbuild@0.11.8': - resolution: {integrity: sha512-FIpljMHWjsZzWTBkGqIuvtPFj3ru1SL5FGhMGtvyGjFi126SwCcVHHTIF5hsrs8Ou8vFEF8S5eFxz7hXrzvxKg==} + '@rstest/adapter-rsbuild@0.11.10': + resolution: {integrity: sha512-aTVwsuU5PDjXNWJ/3Oa3/WqmGG5zOWn93sxp0M/91sPUPTxhzMbpnhC7KstCgcdToFU6Bk+tLlzfDumVqWdN6g==} peerDependencies: '@rsbuild/core': ^1.0.0 || ^2.0.0 '@rstest/core': ^0.11.0 - '@rstest/adapter-rslib@0.11.8': - resolution: {integrity: sha512-PnRrCgTbRH+sFuS/6ZbhDAUEl/n0PkhmzQJxZCYQQEl3w+jGOrLQSAMgh9g/Z2XGM1yfbysn+5HZmGH2kL+E6w==} + '@rstest/adapter-rslib@0.11.10': + resolution: {integrity: sha512-yocKR4QBzerK21J+xJkg4Ixv5Z3N8Jul64nX70ErbRruXyTJm4EMqggzfxX9a7EpR0XnCzE/fNWxZug8/CECeg==} peerDependencies: '@rslib/core': '>=0.18.6 || ^1.0.0-0' '@rstest/core': ^0.11.0 @@ -1719,8 +1619,8 @@ packages: typescript: optional: true - '@rstest/core@0.11.8': - resolution: {integrity: sha512-XworMa277b5Cf4/Box18frFjWGP4dO/NIals+Ck/Q8nhe1z1t8j0P67zh6rv5xTdE3CCEfItICGvdjzz6VRhLg==} + '@rstest/core@0.11.10': + resolution: {integrity: sha512-x/PNGPdyKQWbiVhpoOQco8xXevh4P/QamuyJ0/YdTrdEiUcUglT6tGSnxaudwyrQr8e/5gwWuOt6zykZKWmSUg==} engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: @@ -1862,8 +1762,11 @@ packages: '@types/node@24.13.3': resolution: {integrity: sha512-Dh8vAsV36ig5wa9OX4pXvMc9D3Veibfw2wix0CUwYODLD8nkj9UsLjASr49nPg+2eKzxhBV+v7L8pXvT4e639Q==} - '@types/react-dom@19.2.4': - resolution: {integrity: sha512-Bsc+QHgp+P/F02XDzNCY9jnZNCUuLki36KT7VKrTXXLdHf+vHMNZnW1rVu5DNW/rCK+fya3DATySbLM4yhtKUw==} + '@types/node@26.3.0': + resolution: {integrity: sha512-L3fgrnchriRC2ExBflb8j4uZZURHZfQsmQeyVzhjcHW4kkwVyo8/0h1B2MVzMTrYUJYu6G7EWs14hW/L9putqw==} + + '@types/react-dom@19.2.5': + resolution: {integrity: sha512-fMPwH9v7r/pp43yUd2/Mbiex5KouJwwR3dzHkhLREUC6764VyDsqxhAxv6OFEYR1RhjOyD1naqba8ECDBe7ZQg==} peerDependencies: '@types/react': ^19.2.0 @@ -2008,79 +1911,79 @@ packages: '@ungap/structured-clone@1.3.2': resolution: {integrity: sha512-5jsZFwgR5rTdKwidH9Qmat75RKwqfpKlWWB1frDkljN127mwqBu8K0PYo7/hFpF03IEJpfVPpCQDY/eDx3iHvA==} - '@unhead/react@2.1.16': - resolution: {integrity: sha512-FhKVVHAsHbiD24yNAklQIAbjGmcVLTJjKFx1YEhOzGmiZaH2q6CzbwxboJYK6oasepio8Qap9UqHhudJ98wTbA==} + '@unhead/react@2.1.17': + resolution: {integrity: sha512-KmcYksDjlLozL0fxUjIDwH/0k6+Lg2HWHLUPlkRW8Gl08hdB1AbLB5iU9QxFvkaT8p0Q4dFEqZWnz3g6RMeiRA==} peerDependencies: react: '>=18.3.1' - '@yuku-parser/binding-android-arm64@0.9.0': - resolution: {integrity: sha512-Wm/kEWpUkB1etH6N8+4Rcv3dlYO5asapNlaOEQBqsZc2LAl0TrCYMrx+pQTV+AmQE+JDbSYLzFjtHfLLvJ4W1Q==} + '@yuku-parser/binding-android-arm64@0.9.1': + resolution: {integrity: sha512-AohsA9tsg7xQkYnPNlP/upeXbVGXyVwSFNmDNictfNqiMaqks82H7wsz7zF/5yFYTren/mLGWVrzJ9vFw7ovrg==} cpu: [arm64] os: [android] - '@yuku-parser/binding-darwin-arm64@0.9.0': - resolution: {integrity: sha512-6OAkwsfjIwLE8f/Seu61MjoK3+WHl2KfdkUFxBq2kuz2+H1e1CFFRL5SXQb2WV1BA8kVbl6JFFsS48XJcUzxOQ==} + '@yuku-parser/binding-darwin-arm64@0.9.1': + resolution: {integrity: sha512-EMJbDXAR6CwOmq54SLKVr6fh3a9JaBQu8UNJKpUihClR2GpW2f4rF8qAgvOci07Q5AUJp00/FWZp8uZkNXj9eg==} cpu: [arm64] os: [darwin] - '@yuku-parser/binding-darwin-x64@0.9.0': - resolution: {integrity: sha512-TIR+Tkm56bDPl5U1QKR3NaAt5Rrr9TmvEX6/j4Nz1bGgWBcRkaWaPNm5ear+M+obMQqNsKhCGSUtpE0wTKzv1w==} + '@yuku-parser/binding-darwin-x64@0.9.1': + resolution: {integrity: sha512-HFMB34UzToIqELUU71D5arkJDSOUiPuVGCt3a/p0n6YMUEHmlNGZntVkG0Gf70Qss7EECU75hx7fKWEtAmFLSQ==} cpu: [x64] os: [darwin] - '@yuku-parser/binding-freebsd-x64@0.9.0': - resolution: {integrity: sha512-KWUk89CD+ldIDl5Wa0cVEq5o/PY3MtcfrzEzy2yYFbezzaE/J7k9ioOBof7YwFSzPGDWgt2WZwC/DufwjSIifA==} + '@yuku-parser/binding-freebsd-x64@0.9.1': + resolution: {integrity: sha512-xw0O3G93kosvM+Byclp9W6ssHz6ngfduJDPuNki7rAG4OQ0nz1rZp/Zj4mAk8I8fR31vzwLuCH1qT1j1kv+09Q==} cpu: [x64] os: [freebsd] - '@yuku-parser/binding-linux-arm-gnu@0.9.0': - resolution: {integrity: sha512-T3xhIVqrjeOn+rEURRZnUg+T34wvB6hCKWg+rIhkAE14pjnCQ/8oUussDk68tGBdq4pZUPhtksw0D2As7xIq1Q==} + '@yuku-parser/binding-linux-arm-gnu@0.9.1': + resolution: {integrity: sha512-ZZ3a/sKzEpsQGa9cFL3XjYc0ylVohiXK3cW/hHdg0cMU9es8Vtck94pQ/K8xwlX1kncjUn40XutFuAXx8Ow8vA==} cpu: [arm] os: [linux] libc: [glibc] - '@yuku-parser/binding-linux-arm-musl@0.9.0': - resolution: {integrity: sha512-g3EEh5tYUqhhrcJr+VLjHAKu91PlIq1WwWnlcy9UTVd9TjGX0ZZ8QA4HeYeEb/WwjAscITXF7viHMLHEkqVbzw==} + '@yuku-parser/binding-linux-arm-musl@0.9.1': + resolution: {integrity: sha512-dtKTQ5CybtIAzll0EoN/jyUPvhgbcDCcoLSWcm9YsguTiW8LkHySe78Mnir3DS//QqwrO59O8C2NADtv21wnxg==} cpu: [arm] os: [linux] libc: [musl] - '@yuku-parser/binding-linux-arm64-gnu@0.9.0': - resolution: {integrity: sha512-/iubliwkPbZPMVV/REE+MjZ0O55RzJs1Qt8eTDWfqsGefJzCqbBEN2F63KP/Oryu6ZJaPLQ/VSYvPFjTeXfV9w==} + '@yuku-parser/binding-linux-arm64-gnu@0.9.1': + resolution: {integrity: sha512-csRtiN90U9Gfy/OnYvC/XR32eSd3E/+1GUIM2UmsEnTwnZ2mAd4VxW2CgbuCQCMNSEaeQzeueh5cu2dKEId1Pg==} cpu: [arm64] os: [linux] libc: [glibc] - '@yuku-parser/binding-linux-arm64-musl@0.9.0': - resolution: {integrity: sha512-F1hgfSXcPEl3F6fDi6f5arPfm3wrTitVHWWCVf9VUP33ZGlxeFfbc+8qDRARHnNT48OwIFmgrGhm13WmKFRWOw==} + '@yuku-parser/binding-linux-arm64-musl@0.9.1': + resolution: {integrity: sha512-HGmIyK1B8ve7EOPM/VCAq03LPWpWFsKW29lxQWQxlXryqGMs16m73EurMu+d+RgWmEQQLAj5gSoj1KVD+P4epw==} cpu: [arm64] os: [linux] libc: [musl] - '@yuku-parser/binding-linux-x64-gnu@0.9.0': - resolution: {integrity: sha512-FNLAkP2WB/M3mnnG18f6Bm+CZtId6377g2tcQk79zDeGP2yssaQyXOFKji5lRqop/AVoZWNo8m45zPxxoEsJbw==} + '@yuku-parser/binding-linux-x64-gnu@0.9.1': + resolution: {integrity: sha512-pp/acGgrUokF4KSh+EECfz4Nqwx3J23g24IM+Rh91pkCUj0/QfW7C6KwB2/ZhyuN6qWEZ8s1j+DAddcAXWtBBQ==} cpu: [x64] os: [linux] libc: [glibc] - '@yuku-parser/binding-linux-x64-musl@0.9.0': - resolution: {integrity: sha512-q4fxNn9dZWbKRl79NuekdXNNGz58gu2uy3GjJmghDghDPVukEGhaNqNjYN5XZq7mo7L6EDj5IcUtyMPQlhTWqg==} + '@yuku-parser/binding-linux-x64-musl@0.9.1': + resolution: {integrity: sha512-XdBOP/a5Jx5C36w7XBrGsZKRy45oSrD6ZMyCR6xBHEnL3TihKadH9o+UExPGOh0dLnQ8vZ/6sWwU+CTsGzay0g==} cpu: [x64] os: [linux] libc: [musl] - '@yuku-parser/binding-win32-arm64@0.9.0': - resolution: {integrity: sha512-tVzfdCycadoBrtONw9O2skhjGozQDJKHt/PLfH7pf5jVsCpi5OpWI4ZKNxQKhPI91CqUCqR2kVtXebFML0c7Zw==} + '@yuku-parser/binding-win32-arm64@0.9.1': + resolution: {integrity: sha512-sVA1I57uWAQsDD2ND6loFZXnMynxtCEcsR9L4O31lVd5/xCoGSOo5v+rbqJU2cDPSyAZTFBAFQLzipcYfwUO4w==} cpu: [arm64] os: [win32] - '@yuku-parser/binding-win32-x64@0.9.0': - resolution: {integrity: sha512-mVXePNGj/N2MMQvtks3wE53QCpg0D2I6SpFwmVHT5gsAdOvlK2onLyFOkNCpIWDjpEu749z3QQZzBeIymkLsGA==} + '@yuku-parser/binding-win32-x64@0.9.1': + resolution: {integrity: sha512-hNzy7ZE4iFW4gkhYiHBB05BJPS6NE+oOw9oddyvBiBi9s+xP1keli3ZHxII8l7Qedh/3pNc8X43wo6UPoNarrw==} cpu: [x64] os: [win32] - '@yuku-toolchain/types@0.9.0': - resolution: {integrity: sha512-ta11OgDlY5ESPaO4mer9on6BMYtbQc5itQB+JYxQ7DWVZBgxgJmQkMTUlSDddBg0ueYOpxBrp9vLjkZlhQfClA==} + '@yuku-toolchain/types@0.9.1': + resolution: {integrity: sha512-GhfAIaKmtC4fCKJVnzP6bdGhWZSd7U9Sk7/lexEfROQPDNzuFE9lZKrcIWqzgGVcIMqKvtvFxnfEIaZ5WiroyQ==} acorn-jsx@5.3.2: resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} @@ -2357,8 +2260,8 @@ packages: git-hooks-list@4.2.1: resolution: {integrity: sha512-WNvqJjOxxs/8ZP9+DWdwWJ7cDsd60NHf39XnD82pDVrKO5q7xfPqpkK6hwEAmBa/ZSEE4IOoR75EzbbIuwGlMw==} - happy-dom@20.11.2: - resolution: {integrity: sha512-7MB+bJLkxu3SowAfBJbjW+c55kNz5tkR45gu2qzrxznezhLeN5YIlJbwUgSzlGc+qWoZ8Ykg71H5ezz69xixrw==} + happy-dom@20.11.6: + resolution: {integrity: sha512-Hldbg8AdAa5a5oDcZpjqnGitp7JB0hqWmfv/8qr+kft4vzSD8BHsbdRfzYvL/0QcbKcURC/yyoygbeDQarPvYg==} engines: {node: '>=20.0.0'} has-flag@4.0.0: @@ -2401,8 +2304,8 @@ packages: hastscript@9.0.1: resolution: {integrity: sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==} - heading-case@1.1.5: - resolution: {integrity: sha512-dVZmEJLF5vK2IV3LLpEWgyy0wbe4W+vsUzuHy6KE440IClTXR5GIGDGwiawHqCqunsqos4nvOBpnLGUrUv3BUg==} + heading-case@1.1.8: + resolution: {integrity: sha512-zGhfkYlKqTbkXyu6RluO4DFyD3fEGHOMl/16UZcXX315drkUa/sg8vlvQXm3trqpnoj8LhPsYCrg5R6oP9mtyQ==} hasBin: true hookable@6.1.1: @@ -2822,15 +2725,15 @@ packages: peerDependencies: react: '>=19' - react-router-dom@7.18.1: - resolution: {integrity: sha512-KaZh+X/6UtEp28x51AUYZDMg9NGoz2ja3dNHa+ta/tk40vCzKhQ/RypCWBMLbmDr6//E24Vv5uPsrqXFozdkAg==} + react-router-dom@7.18.2: + resolution: {integrity: sha512-AIKJ/jgGlFb3EbfCXk5Gzshiwt+l3mqbCrNjmEWMMjqQxNJ3svBa6bgzFyCC2Sw3RA0VWF1kg3uQf2OFhxb8hw==} engines: {node: '>=20.0.0'} peerDependencies: react: '>=18' react-dom: '>=18' - react-router@7.18.1: - resolution: {integrity: sha512-GDLgg3i3uM0aeJO3Fm+TCS+sDQ7gu12T6x0qdTEzcwqEfleci7JwugVNIF3U//0FWKnJT7ptG+20B2jfDqnZAg==} + react-router@7.18.2: + resolution: {integrity: sha512-aUVMjFm3GAPTTZL7oYr5E7ETiqfQCHRLH+B+5afnICvf0r7kkK4eR6SMuwbSTJw/7t+12khT/Kahij49fqOCIg==} engines: {node: '>=20.0.0'} peerDependencies: react: '>=18' @@ -2921,8 +2824,8 @@ packages: remark-stringify@11.0.0: resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} - rsbuild-plugin-dts@1.0.0-rc.1: - resolution: {integrity: sha512-erD9AHYfEr5I7yCI9z2qR3NJTnwl1JgmFErjiVeOo7cKjItzaG2QrOqmlYM0DAfzPTktTznPaqpmqkr1kI6pqA==} + rsbuild-plugin-dts@1.0.0-rc.2: + resolution: {integrity: sha512-Mqalmu3j7UcDLUl3O5Y502V5Id6cbKyNn/nUxQIxar7gK2KjdPyw58WRfMQ7/4r4oHmeBeIgeSCb50M648ysoA==} engines: {node: ^20.19.0 || >=22.12.0} peerDependencies: '@microsoft/api-extractor': ^7 @@ -3141,8 +3044,8 @@ packages: resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} engines: {node: '>=10'} - svelte@5.56.9: - resolution: {integrity: sha512-VT8kSnlEg8069w7AiCcAk3Yf5xvMnrGTagVOmU/OpOLHaHnNqXhWZCH/4EVga/bT/HtWhvE6/fHrXLErx7OnJA==} + svelte@5.56.10: + resolution: {integrity: sha512-Lcxbj8I/KAbpY+VjtY4ENQBV0dDCipfGAhqb51XQZ67CIQqXgsv/8dPkbILaj4Fb6/b6JAEM/PIVbILXgDQy2g==} engines: {node: '>=18'} sync-child-process@1.0.2: @@ -3164,8 +3067,8 @@ packages: resolution: {integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==} engines: {node: '>=12.0.0'} - tinypool@2.1.0: - resolution: {integrity: sha512-Pugqs6M0m7Lv1I7FtxN4aoyToKg1C4tu+/381vH35y8oENM/Ai7f7C4StcoK4/+BSw9ebcS8jRiVrORFKCALLw==} + tinypool@2.1.2: + resolution: {integrity: sha512-9YodfrxS9g9IbFr/KOjE5bAeJ0p61n3bW6mqvy0jtoeKd1kTW1Cxm0oulm6KX2lyM9Gl6WIe8nEbY7LWv5ZJww==} engines: {node: ^20.0.0 || >=22.0.0} to-regex-range@5.0.1: @@ -3200,8 +3103,11 @@ packages: undici-types@7.18.2: resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==} - unhead@2.1.16: - resolution: {integrity: sha512-cD2Q4a6SQHhW9/bPp17NT4GJ1yS0DSLe75WEHKQ8bKa/wjB6cIki3KeL86hhllNBcpv8i6bxdwtwQunneXPqKQ==} + undici-types@8.3.0: + resolution: {integrity: sha512-j375ScV60dom+YkPFIfTLcOiPxkN/buHz5GobjLhixFuANaNs3C9l4GmrWqejgXWJ7BbJcFYpTEUkS1Ge8bpZQ==} + + unhead@2.1.17: + resolution: {integrity: sha512-HLMKXOszRhAPBrr6VlqCeVeJq2kbC4kXwzGLEZvvojPLWNYTJw22xG7Bfwhsvs31+IBet3Wl8ADg9dwYdyphfQ==} unified@11.0.5: resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} @@ -3283,11 +3189,11 @@ packages: engines: {node: '>= 14.6'} hasBin: true - yuku-ast@0.9.0: - resolution: {integrity: sha512-+cfaDdcTQuOH5EnfxPvcB3ju4fzWYxZVpbYjKUJ/LMkrfBnuajiY9OcZBwfugKtk+mOTsTLIX87+Vth1zm7r/w==} + yuku-ast@0.9.1: + resolution: {integrity: sha512-JN45kc3sxzv/bDGug063IsIHu6LTkL1vDQUL/m1zvIFBIvMRtYivyRp5LjtMbZtIWnNjV6jaAvHPA1f70yD6gg==} - yuku-parser@0.9.0: - resolution: {integrity: sha512-B8azpS7EuyRyNBRYHPhMiBDsvlI01mxDapQqkEjd3QjTdx6d+io9xiAx52xl0IIHV53GPseo39LUlsbKK/CS6g==} + yuku-parser@0.9.1: + resolution: {integrity: sha512-N4YmuFq7fPTaxhti0mC73nsmxYe30DKHlAxZdTYr4A88NAT3BckilMkuuusHofrfFSeswAdxfixcYy8MMhkvcQ==} zimmerframe@1.1.4: resolution: {integrity: sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ==} @@ -3400,122 +3306,122 @@ snapshots: '@inquirer/ansi@2.0.7': {} - '@inquirer/checkbox@5.2.1(@types/node@24.13.3)': + '@inquirer/checkbox@5.2.1(@types/node@26.3.0)': dependencies: '@inquirer/ansi': 2.0.7 - '@inquirer/core': 11.2.1(@types/node@24.13.3) + '@inquirer/core': 11.2.1(@types/node@26.3.0) '@inquirer/figures': 2.0.7 - '@inquirer/type': 4.0.7(@types/node@24.13.3) + '@inquirer/type': 4.0.7(@types/node@26.3.0) optionalDependencies: - '@types/node': 24.13.3 + '@types/node': 26.3.0 - '@inquirer/confirm@6.1.1(@types/node@24.13.3)': + '@inquirer/confirm@6.1.1(@types/node@26.3.0)': dependencies: - '@inquirer/core': 11.2.1(@types/node@24.13.3) - '@inquirer/type': 4.0.7(@types/node@24.13.3) + '@inquirer/core': 11.2.1(@types/node@26.3.0) + '@inquirer/type': 4.0.7(@types/node@26.3.0) optionalDependencies: - '@types/node': 24.13.3 + '@types/node': 26.3.0 - '@inquirer/core@11.2.1(@types/node@24.13.3)': + '@inquirer/core@11.2.1(@types/node@26.3.0)': dependencies: '@inquirer/ansi': 2.0.7 '@inquirer/figures': 2.0.7 - '@inquirer/type': 4.0.7(@types/node@24.13.3) + '@inquirer/type': 4.0.7(@types/node@26.3.0) cli-width: 4.1.0 fast-wrap-ansi: 0.2.2 mute-stream: 3.0.0 signal-exit: 4.1.0 optionalDependencies: - '@types/node': 24.13.3 + '@types/node': 26.3.0 - '@inquirer/editor@5.2.2(@types/node@24.13.3)': + '@inquirer/editor@5.2.2(@types/node@26.3.0)': dependencies: - '@inquirer/core': 11.2.1(@types/node@24.13.3) - '@inquirer/external-editor': 3.0.3(@types/node@24.13.3) - '@inquirer/type': 4.0.7(@types/node@24.13.3) + '@inquirer/core': 11.2.1(@types/node@26.3.0) + '@inquirer/external-editor': 3.0.3(@types/node@26.3.0) + '@inquirer/type': 4.0.7(@types/node@26.3.0) optionalDependencies: - '@types/node': 24.13.3 + '@types/node': 26.3.0 - '@inquirer/expand@5.1.1(@types/node@24.13.3)': + '@inquirer/expand@5.1.1(@types/node@26.3.0)': dependencies: - '@inquirer/core': 11.2.1(@types/node@24.13.3) - '@inquirer/type': 4.0.7(@types/node@24.13.3) + '@inquirer/core': 11.2.1(@types/node@26.3.0) + '@inquirer/type': 4.0.7(@types/node@26.3.0) optionalDependencies: - '@types/node': 24.13.3 + '@types/node': 26.3.0 - '@inquirer/external-editor@3.0.3(@types/node@24.13.3)': + '@inquirer/external-editor@3.0.3(@types/node@26.3.0)': dependencies: chardet: 2.2.0 iconv-lite: 0.7.3 optionalDependencies: - '@types/node': 24.13.3 + '@types/node': 26.3.0 '@inquirer/figures@2.0.7': {} - '@inquirer/input@5.1.2(@types/node@24.13.3)': + '@inquirer/input@5.1.2(@types/node@26.3.0)': dependencies: - '@inquirer/core': 11.2.1(@types/node@24.13.3) - '@inquirer/type': 4.0.7(@types/node@24.13.3) + '@inquirer/core': 11.2.1(@types/node@26.3.0) + '@inquirer/type': 4.0.7(@types/node@26.3.0) optionalDependencies: - '@types/node': 24.13.3 + '@types/node': 26.3.0 - '@inquirer/number@4.1.1(@types/node@24.13.3)': + '@inquirer/number@4.1.1(@types/node@26.3.0)': dependencies: - '@inquirer/core': 11.2.1(@types/node@24.13.3) - '@inquirer/type': 4.0.7(@types/node@24.13.3) + '@inquirer/core': 11.2.1(@types/node@26.3.0) + '@inquirer/type': 4.0.7(@types/node@26.3.0) optionalDependencies: - '@types/node': 24.13.3 + '@types/node': 26.3.0 - '@inquirer/password@5.1.1(@types/node@24.13.3)': + '@inquirer/password@5.1.1(@types/node@26.3.0)': dependencies: '@inquirer/ansi': 2.0.7 - '@inquirer/core': 11.2.1(@types/node@24.13.3) - '@inquirer/type': 4.0.7(@types/node@24.13.3) + '@inquirer/core': 11.2.1(@types/node@26.3.0) + '@inquirer/type': 4.0.7(@types/node@26.3.0) optionalDependencies: - '@types/node': 24.13.3 - - '@inquirer/prompts@8.5.2(@types/node@24.13.3)': - dependencies: - '@inquirer/checkbox': 5.2.1(@types/node@24.13.3) - '@inquirer/confirm': 6.1.1(@types/node@24.13.3) - '@inquirer/editor': 5.2.2(@types/node@24.13.3) - '@inquirer/expand': 5.1.1(@types/node@24.13.3) - '@inquirer/input': 5.1.2(@types/node@24.13.3) - '@inquirer/number': 4.1.1(@types/node@24.13.3) - '@inquirer/password': 5.1.1(@types/node@24.13.3) - '@inquirer/rawlist': 5.3.1(@types/node@24.13.3) - '@inquirer/search': 4.2.1(@types/node@24.13.3) - '@inquirer/select': 5.2.1(@types/node@24.13.3) + '@types/node': 26.3.0 + + '@inquirer/prompts@8.5.2(@types/node@26.3.0)': + dependencies: + '@inquirer/checkbox': 5.2.1(@types/node@26.3.0) + '@inquirer/confirm': 6.1.1(@types/node@26.3.0) + '@inquirer/editor': 5.2.2(@types/node@26.3.0) + '@inquirer/expand': 5.1.1(@types/node@26.3.0) + '@inquirer/input': 5.1.2(@types/node@26.3.0) + '@inquirer/number': 4.1.1(@types/node@26.3.0) + '@inquirer/password': 5.1.1(@types/node@26.3.0) + '@inquirer/rawlist': 5.3.1(@types/node@26.3.0) + '@inquirer/search': 4.2.1(@types/node@26.3.0) + '@inquirer/select': 5.2.1(@types/node@26.3.0) optionalDependencies: - '@types/node': 24.13.3 + '@types/node': 26.3.0 - '@inquirer/rawlist@5.3.1(@types/node@24.13.3)': + '@inquirer/rawlist@5.3.1(@types/node@26.3.0)': dependencies: - '@inquirer/core': 11.2.1(@types/node@24.13.3) - '@inquirer/type': 4.0.7(@types/node@24.13.3) + '@inquirer/core': 11.2.1(@types/node@26.3.0) + '@inquirer/type': 4.0.7(@types/node@26.3.0) optionalDependencies: - '@types/node': 24.13.3 + '@types/node': 26.3.0 - '@inquirer/search@4.2.1(@types/node@24.13.3)': + '@inquirer/search@4.2.1(@types/node@26.3.0)': dependencies: - '@inquirer/core': 11.2.1(@types/node@24.13.3) + '@inquirer/core': 11.2.1(@types/node@26.3.0) '@inquirer/figures': 2.0.7 - '@inquirer/type': 4.0.7(@types/node@24.13.3) + '@inquirer/type': 4.0.7(@types/node@26.3.0) optionalDependencies: - '@types/node': 24.13.3 + '@types/node': 26.3.0 - '@inquirer/select@5.2.1(@types/node@24.13.3)': + '@inquirer/select@5.2.1(@types/node@26.3.0)': dependencies: '@inquirer/ansi': 2.0.7 - '@inquirer/core': 11.2.1(@types/node@24.13.3) + '@inquirer/core': 11.2.1(@types/node@26.3.0) '@inquirer/figures': 2.0.7 - '@inquirer/type': 4.0.7(@types/node@24.13.3) + '@inquirer/type': 4.0.7(@types/node@26.3.0) optionalDependencies: - '@types/node': 24.13.3 + '@types/node': 26.3.0 - '@inquirer/type@4.0.7(@types/node@24.13.3)': + '@inquirer/type@4.0.7(@types/node@26.3.0)': optionalDependencies: - '@types/node': 24.13.3 + '@types/node': 26.3.0 '@jridgewell/gen-mapping@0.3.13': dependencies: @@ -3572,9 +3478,9 @@ snapshots: '@types/react': 19.2.18 react: 19.2.8 - '@napi-rs/cli@3.8.6(@emnapi/core@1.11.3)(@emnapi/runtime@1.11.3)(@types/node@24.13.3)(supports-color@8.1.1)': + '@napi-rs/cli@3.8.6(@emnapi/core@1.11.3)(@emnapi/runtime@1.11.3)(@types/node@26.3.0)(supports-color@8.1.1)': dependencies: - '@inquirer/prompts': 8.5.2(@types/node@24.13.3) + '@inquirer/prompts': 8.5.2(@types/node@26.3.0) '@napi-rs/cross-toolchain': 1.0.3(supports-color@8.1.1) '@napi-rs/wasm-tools': 1.1.0 '@octokit/rest': 22.0.1 @@ -3967,20 +3873,6 @@ snapshots: '@parcel/watcher-win32-x64': 2.5.6 optional: true - '@rsbuild/core@2.1.10': - dependencies: - '@rspack/core': 2.1.8(@swc/helpers@0.5.23) - '@swc/helpers': 0.5.23 - transitivePeerDependencies: - - '@module-federation/runtime-tools' - - '@rsbuild/core@2.1.12': - dependencies: - '@rspack/core': 2.1.10(@swc/helpers@0.5.23) - '@swc/helpers': 0.5.23 - transitivePeerDependencies: - - '@module-federation/runtime-tools' - '@rsbuild/core@2.1.13': dependencies: '@rspack/core': 2.1.10(@swc/helpers@0.5.23) @@ -3988,41 +3880,32 @@ snapshots: transitivePeerDependencies: - '@module-federation/runtime-tools' - '@rsbuild/core@2.2.0-rc.0': + '@rsbuild/core@2.2.0': dependencies: - '@rspack/core': 2.2.0-rc.0(@swc/helpers@0.5.23) + '@rspack/core': 2.2.0(@swc/helpers@0.5.23) '@swc/helpers': 0.5.23 transitivePeerDependencies: - '@module-federation/runtime-tools' - '@rsbuild/plugin-react@2.1.0(@rsbuild/core@2.1.10)': - dependencies: - '@rspack/plugin-react-refresh': 2.0.2(@rspack/core@2.1.10)(react-refresh@0.18.0) - react-refresh: 0.18.0 - optionalDependencies: - '@rsbuild/core': 2.1.10 - transitivePeerDependencies: - - '@rspack/core' - - '@rsbuild/plugin-react@2.1.0(@rsbuild/core@2.1.10)(@rspack/core@2.1.10)': + '@rsbuild/plugin-react@2.1.0(@rsbuild/core@2.1.13)': dependencies: - '@rspack/plugin-react-refresh': 2.0.2(@rspack/core@2.1.10)(react-refresh@0.18.0) + '@rspack/plugin-react-refresh': 2.0.2(@rspack/core@2.2.0)(react-refresh@0.18.0) react-refresh: 0.18.0 optionalDependencies: - '@rsbuild/core': 2.1.10 + '@rsbuild/core': 2.1.13 transitivePeerDependencies: - '@rspack/core' - '@rsbuild/plugin-react@2.1.0(@rsbuild/core@2.1.13)(@rspack/core@2.1.10)': + '@rsbuild/plugin-react@2.1.0(@rsbuild/core@2.2.0)(@rspack/core@2.2.0)': dependencies: - '@rspack/plugin-react-refresh': 2.0.2(@rspack/core@2.1.10)(react-refresh@0.18.0) + '@rspack/plugin-react-refresh': 2.0.2(@rspack/core@2.2.0)(react-refresh@0.18.0) react-refresh: 0.18.0 optionalDependencies: - '@rsbuild/core': 2.1.13 + '@rsbuild/core': 2.2.0 transitivePeerDependencies: - '@rspack/core' - '@rsbuild/plugin-sass@2.0.1(@rsbuild/core@2.1.10)': + '@rsbuild/plugin-sass@2.0.1(@rsbuild/core@2.2.0)': dependencies: deepmerge: 4.3.1 loader-utils: 2.0.4 @@ -4030,12 +3913,12 @@ snapshots: reduce-configs: 2.0.1 sass-embedded: 1.100.0 optionalDependencies: - '@rsbuild/core': 2.1.10 + '@rsbuild/core': 2.2.0 - '@rslib/core@1.0.0-rc.1(typescript@7.0.2)': + '@rslib/core@1.0.0-rc.2(typescript@7.0.2)': dependencies: - '@rsbuild/core': 2.2.0-rc.0 - rsbuild-plugin-dts: 1.0.0-rc.1(@rsbuild/core@2.2.0-rc.0)(typescript@7.0.2) + '@rsbuild/core': 2.2.0 + rsbuild-plugin-dts: 1.0.0-rc.2(@rsbuild/core@2.2.0)(typescript@7.0.2) optionalDependencies: typescript: 7.0.2 transitivePeerDependencies: @@ -4082,85 +3965,61 @@ snapshots: '@rspack/binding-darwin-arm64@2.1.10': optional: true - '@rspack/binding-darwin-arm64@2.1.8': - optional: true - - '@rspack/binding-darwin-arm64@2.2.0-rc.0': + '@rspack/binding-darwin-arm64@2.2.0': optional: true '@rspack/binding-darwin-x64@2.1.10': optional: true - '@rspack/binding-darwin-x64@2.1.8': - optional: true - - '@rspack/binding-darwin-x64@2.2.0-rc.0': + '@rspack/binding-darwin-x64@2.2.0': optional: true '@rspack/binding-linux-arm64-gnu@2.1.10': optional: true - '@rspack/binding-linux-arm64-gnu@2.1.8': - optional: true - - '@rspack/binding-linux-arm64-gnu@2.2.0-rc.0': + '@rspack/binding-linux-arm64-gnu@2.2.0': optional: true '@rspack/binding-linux-arm64-musl@2.1.10': optional: true - '@rspack/binding-linux-arm64-musl@2.1.8': - optional: true - - '@rspack/binding-linux-arm64-musl@2.2.0-rc.0': + '@rspack/binding-linux-arm64-musl@2.2.0': optional: true '@rspack/binding-linux-ppc64-gnu@2.1.10': optional: true - '@rspack/binding-linux-ppc64-gnu@2.2.0-rc.0': + '@rspack/binding-linux-ppc64-gnu@2.2.0': optional: true '@rspack/binding-linux-riscv64-gnu@2.1.10': optional: true - '@rspack/binding-linux-riscv64-gnu@2.1.8': - optional: true - - '@rspack/binding-linux-riscv64-gnu@2.2.0-rc.0': + '@rspack/binding-linux-riscv64-gnu@2.2.0': optional: true '@rspack/binding-linux-riscv64-musl@2.1.10': optional: true - '@rspack/binding-linux-riscv64-musl@2.1.8': - optional: true - - '@rspack/binding-linux-riscv64-musl@2.2.0-rc.0': + '@rspack/binding-linux-riscv64-musl@2.2.0': optional: true '@rspack/binding-linux-s390x-gnu@2.1.10': optional: true - '@rspack/binding-linux-s390x-gnu@2.2.0-rc.0': + '@rspack/binding-linux-s390x-gnu@2.2.0': optional: true '@rspack/binding-linux-x64-gnu@2.1.10': optional: true - '@rspack/binding-linux-x64-gnu@2.1.8': - optional: true - - '@rspack/binding-linux-x64-gnu@2.2.0-rc.0': + '@rspack/binding-linux-x64-gnu@2.2.0': optional: true '@rspack/binding-linux-x64-musl@2.1.10': optional: true - '@rspack/binding-linux-x64-musl@2.1.8': - optional: true - - '@rspack/binding-linux-x64-musl@2.2.0-rc.0': + '@rspack/binding-linux-x64-musl@2.2.0': optional: true '@rspack/binding-wasm32-wasi@2.1.10': @@ -4170,14 +4029,7 @@ snapshots: '@napi-rs/wasm-runtime': 1.1.6(@emnapi/core@1.11.3)(@emnapi/runtime@1.11.3) optional: true - '@rspack/binding-wasm32-wasi@2.1.8': - dependencies: - '@emnapi/core': 1.11.3 - '@emnapi/runtime': 1.11.3 - '@napi-rs/wasm-runtime': 1.1.6(@emnapi/core@1.11.3)(@emnapi/runtime@1.11.3) - optional: true - - '@rspack/binding-wasm32-wasi@2.2.0-rc.0': + '@rspack/binding-wasm32-wasi@2.2.0': dependencies: '@emnapi/core': 1.11.3 '@emnapi/runtime': 1.11.3 @@ -4187,28 +4039,19 @@ snapshots: '@rspack/binding-win32-arm64-msvc@2.1.10': optional: true - '@rspack/binding-win32-arm64-msvc@2.1.8': - optional: true - - '@rspack/binding-win32-arm64-msvc@2.2.0-rc.0': + '@rspack/binding-win32-arm64-msvc@2.2.0': optional: true '@rspack/binding-win32-ia32-msvc@2.1.10': optional: true - '@rspack/binding-win32-ia32-msvc@2.1.8': - optional: true - - '@rspack/binding-win32-ia32-msvc@2.2.0-rc.0': + '@rspack/binding-win32-ia32-msvc@2.2.0': optional: true '@rspack/binding-win32-x64-msvc@2.1.10': optional: true - '@rspack/binding-win32-x64-msvc@2.1.8': - optional: true - - '@rspack/binding-win32-x64-msvc@2.2.0-rc.0': + '@rspack/binding-win32-x64-msvc@2.2.0': optional: true '@rspack/binding@2.1.10': @@ -4228,37 +4071,22 @@ snapshots: '@rspack/binding-win32-ia32-msvc': 2.1.10 '@rspack/binding-win32-x64-msvc': 2.1.10 - '@rspack/binding@2.1.8': - optionalDependencies: - '@rspack/binding-darwin-arm64': 2.1.8 - '@rspack/binding-darwin-x64': 2.1.8 - '@rspack/binding-linux-arm64-gnu': 2.1.8 - '@rspack/binding-linux-arm64-musl': 2.1.8 - '@rspack/binding-linux-riscv64-gnu': 2.1.8 - '@rspack/binding-linux-riscv64-musl': 2.1.8 - '@rspack/binding-linux-x64-gnu': 2.1.8 - '@rspack/binding-linux-x64-musl': 2.1.8 - '@rspack/binding-wasm32-wasi': 2.1.8 - '@rspack/binding-win32-arm64-msvc': 2.1.8 - '@rspack/binding-win32-ia32-msvc': 2.1.8 - '@rspack/binding-win32-x64-msvc': 2.1.8 - - '@rspack/binding@2.2.0-rc.0': + '@rspack/binding@2.2.0': optionalDependencies: - '@rspack/binding-darwin-arm64': 2.2.0-rc.0 - '@rspack/binding-darwin-x64': 2.2.0-rc.0 - '@rspack/binding-linux-arm64-gnu': 2.2.0-rc.0 - '@rspack/binding-linux-arm64-musl': 2.2.0-rc.0 - '@rspack/binding-linux-ppc64-gnu': 2.2.0-rc.0 - '@rspack/binding-linux-riscv64-gnu': 2.2.0-rc.0 - '@rspack/binding-linux-riscv64-musl': 2.2.0-rc.0 - '@rspack/binding-linux-s390x-gnu': 2.2.0-rc.0 - '@rspack/binding-linux-x64-gnu': 2.2.0-rc.0 - '@rspack/binding-linux-x64-musl': 2.2.0-rc.0 - '@rspack/binding-wasm32-wasi': 2.2.0-rc.0 - '@rspack/binding-win32-arm64-msvc': 2.2.0-rc.0 - '@rspack/binding-win32-ia32-msvc': 2.2.0-rc.0 - '@rspack/binding-win32-x64-msvc': 2.2.0-rc.0 + '@rspack/binding-darwin-arm64': 2.2.0 + '@rspack/binding-darwin-x64': 2.2.0 + '@rspack/binding-linux-arm64-gnu': 2.2.0 + '@rspack/binding-linux-arm64-musl': 2.2.0 + '@rspack/binding-linux-ppc64-gnu': 2.2.0 + '@rspack/binding-linux-riscv64-gnu': 2.2.0 + '@rspack/binding-linux-riscv64-musl': 2.2.0 + '@rspack/binding-linux-s390x-gnu': 2.2.0 + '@rspack/binding-linux-x64-gnu': 2.2.0 + '@rspack/binding-linux-x64-musl': 2.2.0 + '@rspack/binding-wasm32-wasi': 2.2.0 + '@rspack/binding-win32-arm64-msvc': 2.2.0 + '@rspack/binding-win32-ia32-msvc': 2.2.0 + '@rspack/binding-win32-x64-msvc': 2.2.0 '@rspack/core@2.1.10(@swc/helpers@0.5.23)': dependencies: @@ -4266,35 +4094,29 @@ snapshots: optionalDependencies: '@swc/helpers': 0.5.23 - '@rspack/core@2.1.8(@swc/helpers@0.5.23)': - dependencies: - '@rspack/binding': 2.1.8 - optionalDependencies: - '@swc/helpers': 0.5.23 - - '@rspack/core@2.2.0-rc.0(@swc/helpers@0.5.23)': + '@rspack/core@2.2.0(@swc/helpers@0.5.23)': dependencies: - '@rspack/binding': 2.2.0-rc.0 + '@rspack/binding': 2.2.0 optionalDependencies: '@swc/helpers': 0.5.23 - '@rspack/plugin-react-refresh@2.0.2(@rspack/core@2.1.10)(react-refresh@0.18.0)': + '@rspack/plugin-react-refresh@2.0.2(@rspack/core@2.2.0)(react-refresh@0.18.0)': dependencies: react-refresh: 0.18.0 optionalDependencies: - '@rspack/core': 2.1.10(@swc/helpers@0.5.23) + '@rspack/core': 2.2.0(@swc/helpers@0.5.23) - '@rspress/core@2.0.19(micromark-util-types@2.0.2)(micromark@4.0.2)(supports-color@8.1.1)': + '@rspress/core@2.0.20(micromark-util-types@2.0.2)(micromark@4.0.2)(supports-color@8.1.1)': dependencies: '@mdx-js/mdx': 3.1.1(supports-color@8.1.1) '@mdx-js/react': 3.1.1(@types/react@19.2.18)(react@19.2.8) - '@rsbuild/core': 2.1.10 - '@rsbuild/plugin-react': 2.1.0(@rsbuild/core@2.1.10) - '@rspress/shared': 2.0.19(supports-color@8.1.1) + '@rsbuild/core': 2.1.13 + '@rsbuild/plugin-react': 2.1.0(@rsbuild/core@2.1.13) + '@rspress/shared': 2.0.20(supports-color@8.1.1) '@shikijs/rehype': 4.3.1 '@types/mdast': 4.0.4 '@types/react': 19.2.18 - '@unhead/react': 2.1.16(react@19.2.8) + '@unhead/react': 2.1.17(react@19.2.8) body-scroll-lock: 4.0.0-beta.0 clsx: 2.1.1 copy-to-clipboard: 3.3.3 @@ -4309,7 +4131,7 @@ snapshots: react-dom: 19.2.8(react@19.2.8) react-lazy-with-preload: 2.2.1 react-render-to-markdown: 19.1.0(react@19.2.8) - react-router-dom: 7.18.1(react-dom@19.2.8)(react@19.2.8) + react-router-dom: 7.18.2(react-dom@19.2.8)(react@19.2.8) rehype-external-links: 3.0.0 rehype-raw: 7.0.0 remark-cjk-friendly: 2.3.1(@types/mdast@4.0.4)(micromark-util-types@2.0.2)(micromark@4.0.2)(unified@11.0.5) @@ -4332,17 +4154,17 @@ snapshots: - micromark-util-types - supports-color - '@rspress/plugin-client-redirects@2.0.19(@rspress/core@2.0.19)': + '@rspress/plugin-client-redirects@2.0.20(@rspress/core@2.0.20)': dependencies: - '@rspress/core': 2.0.19(micromark-util-types@2.0.2)(micromark@4.0.2)(supports-color@8.1.1) + '@rspress/core': 2.0.20(micromark-util-types@2.0.2)(micromark@4.0.2)(supports-color@8.1.1) - '@rspress/plugin-sitemap@2.0.19(@rspress/core@2.0.19)': + '@rspress/plugin-sitemap@2.0.20(@rspress/core@2.0.20)': dependencies: - '@rspress/core': 2.0.19(micromark-util-types@2.0.2)(micromark@4.0.2)(supports-color@8.1.1) + '@rspress/core': 2.0.20(micromark-util-types@2.0.2)(micromark@4.0.2)(supports-color@8.1.1) - '@rspress/shared@2.0.19(supports-color@8.1.1)': + '@rspress/shared@2.0.20(supports-color@8.1.1)': dependencies: - '@rsbuild/core': 2.1.12 + '@rsbuild/core': 2.1.13 '@shikijs/rehype': 4.3.1 '@types/react': 19.2.18 mdast-util-mdx-jsx: 3.2.0(supports-color@8.1.1) @@ -4352,34 +4174,34 @@ snapshots: - core-js - supports-color - '@rstack-dev/doc-ui@1.14.8(@rspress/core@2.0.19)': + '@rstack-dev/doc-ui@1.14.8(@rspress/core@2.0.20)': optionalDependencies: - '@rspress/core': 2.0.19(micromark-util-types@2.0.2)(micromark@4.0.2)(supports-color@8.1.1) + '@rspress/core': 2.0.20(micromark-util-types@2.0.2)(micromark@4.0.2)(supports-color@8.1.1) - '@rstackjs/create-toolkit@2.2.3': {} + '@rstackjs/create-toolkit@2.2.4': {} '@rstackjs/load-config@0.1.2': {} '@rstackjs/test-utils@0.2.0': {} - '@rstest/adapter-rsbuild@0.11.8(@rsbuild/core@2.1.13)(@rstest/core@0.11.8)': + '@rstest/adapter-rsbuild@0.11.10(@rsbuild/core@2.2.0)(@rstest/core@0.11.10)': dependencies: - '@rsbuild/core': 2.1.13 - '@rstest/core': 0.11.8(happy-dom@20.11.2) + '@rsbuild/core': 2.2.0 + '@rstest/core': 0.11.10(happy-dom@20.11.6) - '@rstest/adapter-rslib@0.11.8(@rslib/core@1.0.0-rc.1)(@rstest/core@0.11.8)(typescript@7.0.2)': + '@rstest/adapter-rslib@0.11.10(@rslib/core@1.0.0-rc.2)(@rstest/core@0.11.10)(typescript@7.0.2)': dependencies: - '@rslib/core': 1.0.0-rc.1(typescript@7.0.2) - '@rstest/core': 0.11.8(happy-dom@20.11.2) + '@rslib/core': 1.0.0-rc.2(typescript@7.0.2) + '@rstest/core': 0.11.10(happy-dom@20.11.6) optionalDependencies: typescript: 7.0.2 - '@rstest/core@0.11.8(happy-dom@20.11.2)': + '@rstest/core@0.11.10(happy-dom@20.11.6)': dependencies: - '@rsbuild/core': 2.1.12 + '@rsbuild/core': 2.2.0 '@types/chai': 5.2.3 optionalDependencies: - happy-dom: 20.11.2 + happy-dom: 20.11.6 transitivePeerDependencies: - '@module-federation/runtime-tools' - core-js @@ -4486,7 +4308,7 @@ snapshots: picocolors: 1.1.1 redent: 3.0.0 - '@testing-library/react@16.3.2(@testing-library/dom@10.4.1)(@types/react-dom@19.2.4)(@types/react@19.2.18)(react-dom@19.2.8)(react@19.2.8)': + '@testing-library/react@16.3.2(@testing-library/dom@10.4.1)(@types/react-dom@19.2.5)(@types/react@19.2.18)(react-dom@19.2.8)(react@19.2.8)': dependencies: '@babel/runtime': 7.29.7 '@testing-library/dom': 10.4.1 @@ -4494,7 +4316,7 @@ snapshots: react-dom: 19.2.8(react@19.2.8) optionalDependencies: '@types/react': 19.2.18 - '@types/react-dom': 19.2.4(@types/react@19.2.18) + '@types/react-dom': 19.2.5(@types/react@19.2.18) '@tybys/wasm-util@0.10.3': dependencies: @@ -4542,7 +4364,11 @@ snapshots: dependencies: undici-types: 7.18.2 - '@types/react-dom@19.2.4(@types/react@19.2.18)': + '@types/node@26.3.0': + dependencies: + undici-types: 8.3.0 + + '@types/react-dom@19.2.5(@types/react@19.2.18)': dependencies: '@types/react': 19.2.18 @@ -4624,48 +4450,48 @@ snapshots: '@ungap/structured-clone@1.3.2': {} - '@unhead/react@2.1.16(react@19.2.8)': + '@unhead/react@2.1.17(react@19.2.8)': dependencies: react: 19.2.8 - unhead: 2.1.16 + unhead: 2.1.17 - '@yuku-parser/binding-android-arm64@0.9.0': + '@yuku-parser/binding-android-arm64@0.9.1': optional: true - '@yuku-parser/binding-darwin-arm64@0.9.0': + '@yuku-parser/binding-darwin-arm64@0.9.1': optional: true - '@yuku-parser/binding-darwin-x64@0.9.0': + '@yuku-parser/binding-darwin-x64@0.9.1': optional: true - '@yuku-parser/binding-freebsd-x64@0.9.0': + '@yuku-parser/binding-freebsd-x64@0.9.1': optional: true - '@yuku-parser/binding-linux-arm-gnu@0.9.0': + '@yuku-parser/binding-linux-arm-gnu@0.9.1': optional: true - '@yuku-parser/binding-linux-arm-musl@0.9.0': + '@yuku-parser/binding-linux-arm-musl@0.9.1': optional: true - '@yuku-parser/binding-linux-arm64-gnu@0.9.0': + '@yuku-parser/binding-linux-arm64-gnu@0.9.1': optional: true - '@yuku-parser/binding-linux-arm64-musl@0.9.0': + '@yuku-parser/binding-linux-arm64-musl@0.9.1': optional: true - '@yuku-parser/binding-linux-x64-gnu@0.9.0': + '@yuku-parser/binding-linux-x64-gnu@0.9.1': optional: true - '@yuku-parser/binding-linux-x64-musl@0.9.0': + '@yuku-parser/binding-linux-x64-musl@0.9.1': optional: true - '@yuku-parser/binding-win32-arm64@0.9.0': + '@yuku-parser/binding-win32-arm64@0.9.1': optional: true - '@yuku-parser/binding-win32-x64@0.9.0': + '@yuku-parser/binding-win32-x64@0.9.1': optional: true - '@yuku-toolchain/types@0.9.0': {} + '@yuku-toolchain/types@0.9.1': {} acorn-jsx@5.3.2(acorn@8.17.0): dependencies: @@ -4882,7 +4708,7 @@ snapshots: git-hooks-list@4.2.1: {} - happy-dom@20.11.2: + happy-dom@20.11.6: dependencies: '@types/node': 24.13.3 '@types/whatwg-mimetype': 3.0.2 @@ -5017,7 +4843,7 @@ snapshots: property-information: 7.2.0 space-separated-tokens: 2.0.2 - heading-case@1.1.5: {} + heading-case@1.1.8: {} hookable@6.1.1: {} @@ -5643,10 +5469,10 @@ snapshots: picocolors: 1.1.1 source-map-js: 1.2.1 - prettier-plugin-svelte@4.1.1(prettier@3.9.6)(svelte@5.56.9): + prettier-plugin-svelte@4.1.1(prettier@3.9.6)(svelte@5.56.10): dependencies: prettier: 3.9.6 - svelte: 5.56.9 + svelte: 5.56.10 prettier@3.9.6: {} @@ -5685,13 +5511,13 @@ snapshots: react: 19.2.8 react-reconciler: 0.33.0(react@19.2.8) - react-router-dom@7.18.1(react-dom@19.2.8)(react@19.2.8): + react-router-dom@7.18.2(react-dom@19.2.8)(react@19.2.8): dependencies: react: 19.2.8 react-dom: 19.2.8(react@19.2.8) - react-router: 7.18.1(react-dom@19.2.8)(react@19.2.8) + react-router: 7.18.2(react-dom@19.2.8)(react@19.2.8) - react-router@7.18.1(react-dom@19.2.8)(react@19.2.8): + react-router@7.18.2(react-dom@19.2.8)(react@19.2.8): dependencies: cookie: 1.1.1 react: 19.2.8 @@ -5837,22 +5663,22 @@ snapshots: mdast-util-to-markdown: 2.1.2 unified: 11.0.5 - rsbuild-plugin-dts@1.0.0-rc.1(@rsbuild/core@2.2.0-rc.0)(typescript@7.0.2): + rsbuild-plugin-dts@1.0.0-rc.2(@rsbuild/core@2.2.0)(typescript@7.0.2): dependencies: '@ast-grep/napi': 0.45.1 - '@rsbuild/core': 2.2.0-rc.0 + '@rsbuild/core': 2.2.0 optionalDependencies: typescript: 7.0.2 - rsbuild-plugin-open-graph@1.1.3(@rsbuild/core@2.1.10): + rsbuild-plugin-open-graph@1.1.3(@rsbuild/core@2.2.0): optionalDependencies: - '@rsbuild/core': 2.1.10 + '@rsbuild/core': 2.2.0 rslog@2.3.0: {} - rspress-plugin-font-open-sans@1.0.4(@rspress/core@2.0.19): + rspress-plugin-font-open-sans@1.0.4(@rspress/core@2.0.20): dependencies: - '@rspress/core': 2.0.19(micromark-util-types@2.0.2)(micromark@4.0.2)(supports-color@8.1.1) + '@rspress/core': 2.0.20(micromark-util-types@2.0.2)(micromark@4.0.2)(supports-color@8.1.1) rxjs@7.8.2: dependencies: @@ -6020,7 +5846,7 @@ snapshots: dependencies: has-flag: 4.0.0 - svelte@5.56.9: + svelte@5.56.10: dependencies: '@jridgewell/remapping': 2.3.5 '@jridgewell/sourcemap-codec': 1.5.5 @@ -6058,7 +5884,7 @@ snapshots: fdir: 6.5.0(picomatch@4.0.5) picomatch: 4.0.5 - tinypool@2.1.0: {} + tinypool@2.1.2: {} to-regex-range@5.0.1: dependencies: @@ -6101,7 +5927,9 @@ snapshots: undici-types@7.18.2: {} - unhead@2.1.16: + undici-types@8.3.0: {} + + unhead@2.1.17: dependencies: hookable: 6.1.1 @@ -6189,27 +6017,27 @@ snapshots: yaml@2.9.0: optional: true - yuku-ast@0.9.0: + yuku-ast@0.9.1: dependencies: - '@yuku-toolchain/types': 0.9.0 + '@yuku-toolchain/types': 0.9.1 - yuku-parser@0.9.0: + yuku-parser@0.9.1: dependencies: - '@yuku-toolchain/types': 0.9.0 - yuku-ast: 0.9.0 + '@yuku-toolchain/types': 0.9.1 + yuku-ast: 0.9.1 optionalDependencies: - '@yuku-parser/binding-android-arm64': 0.9.0 - '@yuku-parser/binding-darwin-arm64': 0.9.0 - '@yuku-parser/binding-darwin-x64': 0.9.0 - '@yuku-parser/binding-freebsd-x64': 0.9.0 - '@yuku-parser/binding-linux-arm-gnu': 0.9.0 - '@yuku-parser/binding-linux-arm-musl': 0.9.0 - '@yuku-parser/binding-linux-arm64-gnu': 0.9.0 - '@yuku-parser/binding-linux-arm64-musl': 0.9.0 - '@yuku-parser/binding-linux-x64-gnu': 0.9.0 - '@yuku-parser/binding-linux-x64-musl': 0.9.0 - '@yuku-parser/binding-win32-arm64': 0.9.0 - '@yuku-parser/binding-win32-x64': 0.9.0 + '@yuku-parser/binding-android-arm64': 0.9.1 + '@yuku-parser/binding-darwin-arm64': 0.9.1 + '@yuku-parser/binding-darwin-x64': 0.9.1 + '@yuku-parser/binding-freebsd-x64': 0.9.1 + '@yuku-parser/binding-linux-arm-gnu': 0.9.1 + '@yuku-parser/binding-linux-arm-musl': 0.9.1 + '@yuku-parser/binding-linux-arm64-gnu': 0.9.1 + '@yuku-parser/binding-linux-arm64-musl': 0.9.1 + '@yuku-parser/binding-linux-x64-gnu': 0.9.1 + '@yuku-parser/binding-linux-x64-musl': 0.9.1 + '@yuku-parser/binding-win32-arm64': 0.9.1 + '@yuku-parser/binding-win32-x64': 0.9.1 zimmerframe@1.1.4: {} diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index d386e1d9..328922b2 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -13,33 +13,33 @@ cleanupUnusedCatalogs: true catalog: '@napi-rs/cli': '^3.8.6' - '@rsbuild/core': '~2.1.13' + '@rsbuild/core': '~2.2.0' '@rsbuild/plugin-react': '^2.1.0' '@rsbuild/plugin-sass': '^2.0.1' - '@rslib/core': '~1.0.0-rc.1' + '@rslib/core': '~1.0.0-rc.2' '@rslint/core': '~0.8.1' - '@rspress/core': '^2.0.19' - '@rspress/plugin-client-redirects': '^2.0.19' - '@rspress/plugin-sitemap': '^2.0.19' + '@rspress/core': '^2.0.20' + '@rspress/plugin-client-redirects': '^2.0.20' + '@rspress/plugin-sitemap': '^2.0.20' '@rstack-dev/doc-ui': '1.14.8' - '@rstackjs/create-toolkit': '2.2.3' + '@rstackjs/create-toolkit': '2.2.4' '@rstackjs/load-config': ^0.1.2 '@rstackjs/test-utils': ^0.2.0 - '@rstest/adapter-rsbuild': '~0.11.8' - '@rstest/adapter-rslib': '~0.11.8' - '@rstest/core': '~0.11.8' + '@rstest/adapter-rsbuild': '~0.11.10' + '@rstest/adapter-rslib': '~0.11.10' + '@rstest/core': '~0.11.10' '@testing-library/dom': '^10.4.1' '@testing-library/jest-dom': '^7.0.1' '@testing-library/react': '^16.3.2' '@types/micromatch': '^4.0.10' - '@types/node': '^24.13.3' + '@types/node': '^26.3.0' '@types/react': '^19.2.18' - '@types/react-dom': '^19.2.4' + '@types/react-dom': '^19.2.5' '@shikijs/transformers': '^4.4.3' 'cspell-ban-words': '^0.0.4' 'fast-json-stable-stringify': '2.1.0' - 'happy-dom': '^20.11.2' - 'heading-case': '^1.1.5' + 'happy-dom': '^20.11.6' + 'heading-case': '^1.1.8' 'import-meta-resolve': '4.2.0' is-binary-path: 3.0.0 'lint-staged': '^17.3.0' @@ -52,13 +52,13 @@ catalog: rslog: ^2.3.0 'rspress-plugin-font-open-sans': '^1.0.4' 'sort-package-json': '4.0.0' - svelte: '^5.56.9' - tinypool: '2.1.0' + svelte: '^5.56.10' + tinypool: '2.1.2' tiny-readdir: 3.1.1 'typescript': '^7.0.2' 'vscode-languageserver': '10.1.0' 'vscode-languageserver-textdocument': '1.0.12' - yuku-parser: '0.9.0' + yuku-parser: '0.9.1' dedupePeers: true From 946f34395e5b641c30ce07122df88ea7e8d68a93 Mon Sep 17 00:00:00 2001 From: Jiahan Chen Date: Wed, 26 Aug 2026 17:47:02 +0800 Subject: [PATCH 4/8] chore(deps): upgrade Cargo dependencies (#416) --- Cargo.lock | 56 +++++++++++++++++++++++++++--------------------------- Cargo.toml | 2 +- 2 files changed, 29 insertions(+), 29 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 93e66a42..babdf52f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -69,15 +69,15 @@ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17" [[package]] name = "ctor" -version = "1.0.12" +version = "1.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d83cb7e7a873830708d6b02a78cd36a592c6fa14bf267b68725103b85c0d77f" +checksum = "914a755b7c2d4af2bdcff7ce1739e2db9a1b81a9b07123d8015786ae03c0980d" [[package]] name = "futures" -version = "0.3.33" +version = "0.3.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a88cf1f829d945f548cf8fec32c61b1f202b6d93b45848602fc02af4b12ad218" +checksum = "9a31d2a3fbaaeb2af2368bbdd904aa8e812d3c04a1ee10d3171f52d556e5d0a3" dependencies = [ "futures-channel", "futures-core", @@ -90,9 +90,9 @@ dependencies = [ [[package]] name = "futures-channel" -version = "0.3.33" +version = "0.3.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae" +checksum = "b1f9e3d69d39e4862ffed03ed071a76f9a13ba1d9109d355b0f0aa6b15e393c4" dependencies = [ "futures-core", "futures-sink", @@ -100,15 +100,15 @@ dependencies = [ [[package]] name = "futures-core" -version = "0.3.33" +version = "0.3.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7" +checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e" [[package]] name = "futures-executor" -version = "0.3.33" +version = "0.3.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6754879cc9f2c66f88c6e5c35344bb0bdb0708b0352b1201815667c7eabc7458" +checksum = "031b47cf1a3c6cc8bc2fc76cd437f521619387907d469316e7c0bc278f1f5432" dependencies = [ "futures-core", "futures-task", @@ -117,38 +117,38 @@ dependencies = [ [[package]] name = "futures-io" -version = "0.3.33" +version = "0.3.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a" +checksum = "53c0fa8157de1303bfffdaa1cc2a673bfffb60102f76b0ef4441659124373fed" [[package]] name = "futures-macro" -version = "0.3.33" +version = "0.3.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d6d3cde68c518367be28956066ddfef33813991b77a55005a69dae04bf3b10b" +checksum = "9fb9654ba8355388abeb8dcb4fc62f511300867002afc858860463bdd9fe0c44" dependencies = [ "proc-macro2", "quote", - "syn 2.0.119", + "syn 3.0.4", ] [[package]] name = "futures-sink" -version = "0.3.33" +version = "0.3.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307" +checksum = "1944426bf7d03f1d14f708785e4b33efd750b36d48a157b836b3efc15ede8e1d" [[package]] name = "futures-task" -version = "0.3.33" +version = "0.3.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109" +checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd" [[package]] name = "futures-util" -version = "0.3.33" +version = "0.3.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa" +checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc" dependencies = [ "futures-channel", "futures-core", @@ -208,9 +208,9 @@ dependencies = [ [[package]] name = "log" -version = "0.4.33" +version = "0.4.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad" +checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6" [[package]] name = "memchr" @@ -220,9 +220,9 @@ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98" [[package]] name = "napi" -version = "3.12.1" +version = "3.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "459197f1592f4c3dbbf9c1b13f5a4599a343e4ef66b96bc340e2a518b36a6662" +checksum = "58c5f4d5375213fdb7be2655e152386e82f026f9a5ba36a75556e11359aafe09" dependencies = [ "bitflags", "ctor", @@ -385,7 +385,7 @@ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348" dependencies = [ "proc-macro2", "quote", - "syn 3.0.3", + "syn 3.0.4", ] [[package]] @@ -407,9 +407,9 @@ dependencies = [ [[package]] name = "syn" -version = "3.0.3" +version = "3.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3" +checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 48c4f025..29cf6bd4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ repository = "https://github.com/rstackjs/rstack-cli" [workspace.dependencies] ignore = { version = "0.4.33", default-features = false } -napi = { version = "3.12.1", default-features = false, features = ["napi9"] } +napi = { version = "3.12.2", default-features = false, features = ["napi9"] } napi-build = "2.4.1" napi-derive = "3.6.3" pathdiff = "0.2.3" From 377933bd66b4d20c6b8b42a189520180439934ab Mon Sep 17 00:00:00 2001 From: Jiahan Chen Date: Wed, 26 Aug 2026 17:57:13 +0800 Subject: [PATCH 5/8] docs: update website brand colors (#417) --- website/theme/theme.scss | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/website/theme/theme.scss b/website/theme/theme.scss index 2f6c9ce4..4ead7477 100644 --- a/website/theme/theme.scss +++ b/website/theme/theme.scss @@ -1,10 +1,10 @@ :root { - --rp-c-brand: #f93920; - --rp-c-brand-light: #fa6552; - --rp-c-brand-lighter: #fc9183; - --rp-c-brand-dark: #f82307; - --rp-c-brand-darker: #e01f06; - --rp-c-brand-tint: rgba(249, 57, 32, 0.15); + --rp-c-brand: #ff5e00; + --rp-c-brand-dark: var(--rp-c-brand); + --rp-c-brand-darker: #ff704d; + --rp-c-brand-light: #ff7524; + --rp-c-brand-lighter: #ff7524; + --rp-c-brand-tint: rgba(255, 94, 0, 0.07); --rp-c-text-code: var(--rp-c-text-1); } From 9cbc3f1807cd58b459b1f1adbc0c32682753add9 Mon Sep 17 00:00:00 2001 From: Jiahan Chen Date: Wed, 26 Aug 2026 22:02:34 +0800 Subject: [PATCH 6/8] docs: reuse shared theme styles from doc-ui (#418) --- pnpm-lock.yaml | 10 ++-- pnpm-workspace.yaml | 3 +- website/package.json | 2 +- website/theme/components/Features.tsx | 4 +- website/theme/index.scss | 2 - website/theme/index.tsx | 3 +- website/theme/theme.scss | 71 --------------------------- 7 files changed, 11 insertions(+), 84 deletions(-) delete mode 100644 website/theme/theme.scss diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 07287cda..c19a9a89 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -34,7 +34,7 @@ catalogs: '@rspress/plugin-sitemap': specifier: ^2.0.20 version: 2.0.20 - '@rstack-dev/doc-ui': + '@rstackjs/doc-ui': specifier: 1.14.8 version: 1.14.8 '@rstackjs/create-toolkit': @@ -458,7 +458,7 @@ importers: '@rspress/plugin-sitemap': specifier: 'catalog:' version: 2.0.20(@rspress/core@2.0.20) - '@rstack-dev/doc-ui': + '@rstackjs/doc-ui': specifier: 'catalog:' version: 1.14.8(@rspress/core@2.0.20) '@shikijs/transformers': @@ -1580,8 +1580,8 @@ packages: '@rspress/shared@2.0.20': resolution: {integrity: sha512-+e55crMZom5BQLgebrT4Pz4Zg0P7JIsYnDz4Ey65CTloFhfan1rARQpgb74b2bf5kKv/sPbPw6pfD8Fu74mCPQ==} - '@rstack-dev/doc-ui@1.14.8': - resolution: {integrity: sha512-CAibkpvCnJEcxsypu3ZE9JjtQw+1+iJGv9X09Yg4//9FevHpfaHW+b2onFG+Z/xOlUXGg83rJTb7CO6YbToP0w==} + '@rstackjs/doc-ui@1.14.8': + resolution: {integrity: sha512-i8FB+NrnCVKIPz4cbXe/oOebcHuIUe2DQTpKxCXUBqgM9QL66+LZ5UtgZPExalTDpUPzhwOhsXKfkstGB0JkVg==} peerDependencies: '@rspress/core': '>=2.0.0' peerDependenciesMeta: @@ -4174,7 +4174,7 @@ snapshots: - core-js - supports-color - '@rstack-dev/doc-ui@1.14.8(@rspress/core@2.0.20)': + '@rstackjs/doc-ui@1.14.8(@rspress/core@2.0.20)': optionalDependencies: '@rspress/core': 2.0.20(micromark-util-types@2.0.2)(micromark@4.0.2)(supports-color@8.1.1) diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 328922b2..247c06ec 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -21,7 +21,7 @@ catalog: '@rspress/core': '^2.0.20' '@rspress/plugin-client-redirects': '^2.0.20' '@rspress/plugin-sitemap': '^2.0.20' - '@rstack-dev/doc-ui': '1.14.8' + '@rstackjs/doc-ui': '1.14.8' '@rstackjs/create-toolkit': '2.2.4' '@rstackjs/load-config': ^0.1.2 '@rstackjs/test-utils': ^0.2.0 @@ -94,7 +94,6 @@ minimumReleaseAgeExclude: - '@rslint/*' - '@rstackjs/*' - 'rslog' - - '@rstack-dev/doc-ui' - 'rsbuild-plugin-*' - '@swc/*' - 'heading-case' diff --git a/website/package.json b/website/package.json index bb4a5f6b..192e2e47 100644 --- a/website/package.json +++ b/website/package.json @@ -13,7 +13,7 @@ "@rspress/core": "catalog:", "@rspress/plugin-client-redirects": "catalog:", "@rspress/plugin-sitemap": "catalog:", - "@rstack-dev/doc-ui": "catalog:", + "@rstackjs/doc-ui": "catalog:", "@shikijs/transformers": "catalog:", "@types/node": "catalog:", "@types/react": "catalog:", diff --git a/website/theme/components/Features.tsx b/website/theme/components/Features.tsx index cd5fd54d..b45d5b7a 100644 --- a/website/theme/components/Features.tsx +++ b/website/theme/components/Features.tsx @@ -3,11 +3,11 @@ import { Link } from '@rspress/core/theme-original'; import { containerStyle, innerContainerStyle, -} from '@rstack-dev/doc-ui/section-style'; +} from '@rstackjs/doc-ui/section-style'; import { type Feature, WhyRspack as BaseFeatures, -} from '@rstack-dev/doc-ui/why-rspack'; +} from '@rstackjs/doc-ui/why-rspack'; import { memo, useMemo } from 'react'; import CompatibleJson from './Features/assets/Compatible.json'; import Compatible from './Features/assets/Compatible.svg'; diff --git a/website/theme/index.scss b/website/theme/index.scss index 9a0c9c56..424f4dba 100644 --- a/website/theme/index.scss +++ b/website/theme/index.scss @@ -1,5 +1,3 @@ -@import './theme.scss'; - /* Keep document content visually centered when a page has no sidebar. */ @media (min-width: 1280px) { .rp-doc-layout__sidebar-placeholder { diff --git a/website/theme/index.tsx b/website/theme/index.tsx index 82cee730..d9f07d14 100644 --- a/website/theme/index.tsx +++ b/website/theme/index.tsx @@ -1,6 +1,7 @@ import { Layout as BaseLayout } from '@rspress/core/theme-original'; -import { NavIcon } from '@rstack-dev/doc-ui/nav-icon'; +import { NavIcon } from '@rstackjs/doc-ui/nav-icon'; import { HomeLayout } from './pages'; +import '@rstackjs/doc-ui/theme.css'; import './index.scss'; const Layout = () => } />; diff --git a/website/theme/theme.scss b/website/theme/theme.scss deleted file mode 100644 index 4ead7477..00000000 --- a/website/theme/theme.scss +++ /dev/null @@ -1,71 +0,0 @@ -:root { - --rp-c-brand: #ff5e00; - --rp-c-brand-dark: var(--rp-c-brand); - --rp-c-brand-darker: #ff704d; - --rp-c-brand-light: #ff7524; - --rp-c-brand-lighter: #ff7524; - --rp-c-brand-tint: rgba(255, 94, 0, 0.07); - --rp-c-text-code: var(--rp-c-text-1); -} - -.dark { - --rp-c-link: var(--rp-c-brand-light); -} - -html:not(.dark) { - --rp-c-text-2: #666; -} - -.rp-sidebar-item:hover, -.rp-sidebar-item--active, -.rp-sidebar-item--active:hover { - color: var(--rp-c-text-0); - background-color: var(--rp-c-bg-mute); -} - -.dark { - .rp-sidebar-item:hover, - .rp-sidebar-item--active, - .rp-sidebar-item--active:hover { - background-color: #1f1f1f; - } -} - -.rp-toc-item__text, -.rp-toc-item__text code { - color: var(--rp-c-text-2); -} - -.rp-toc-item--active .rp-toc-item__text, -.rp-toc-item--active .rp-toc-item__text code { - color: var(--rp-c-text-0); - font-weight: 500; -} - -.rp-doc { - .rp-link, - .rp-link code { - color: inherit; - text-decoration-line: underline; - text-underline-offset: 2px; - text-decoration-color: rgba(0, 0, 0, 0.25); - - &:hover { - opacity: 1; - text-decoration-color: currentColor; - border-bottom: none !important; - } - } -} - -.dark { - .rp-doc { - .rp-link { - text-decoration-color: rgba(255, 255, 255, 0.5); - - &:hover { - text-decoration-color: currentColor; - } - } - } -} From d4e081a416abcf0bc539fd0ee968e7c8934bf5ed Mon Sep 17 00:00:00 2001 From: Jiahan Chen Date: Thu, 27 Aug 2026 22:08:04 +0800 Subject: [PATCH 7/8] fix: pin Rslint to 0.8.1 (#419) --- pnpm-lock.yaml | 2 +- pnpm-workspace.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c19a9a89..7ac0ffa6 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -23,7 +23,7 @@ catalogs: specifier: ~1.0.0-rc.2 version: 1.0.0-rc.2 '@rslint/core': - specifier: ~0.8.1 + specifier: 0.8.1 version: 0.8.1 '@rspress/core': specifier: ^2.0.20 diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 247c06ec..1a14cbef 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -17,7 +17,7 @@ catalog: '@rsbuild/plugin-react': '^2.1.0' '@rsbuild/plugin-sass': '^2.0.1' '@rslib/core': '~1.0.0-rc.2' - '@rslint/core': '~0.8.1' + '@rslint/core': '0.8.1' '@rspress/core': '^2.0.20' '@rspress/plugin-client-redirects': '^2.0.20' '@rspress/plugin-sitemap': '^2.0.20' From 3fe1dac474f3640178c070c2fc06145c68487f53 Mon Sep 17 00:00:00 2001 From: Jiahan Chen Date: Fri, 28 Aug 2026 10:20:29 +0800 Subject: [PATCH 8/8] release: v0.6.5 (#420) --- packages/create-rstack/package.json | 2 +- .../template-app-lit-ts/package.json | 2 +- .../template-app-lit/package.json | 2 +- .../template-app-preact-ts/package.json | 2 +- .../template-app-preact/package.json | 2 +- .../template-app-react-ts/package.json | 2 +- .../template-app-react/package.json | 2 +- .../template-app-solid-ts/package.json | 2 +- .../template-app-solid/package.json | 2 +- .../template-app-svelte-ts/package.json | 2 +- .../template-app-svelte/package.json | 2 +- .../template-app-vanilla-ts/package.json | 2 +- .../template-app-vanilla/package.json | 2 +- .../template-app-vue-ts/package.json | 2 +- .../template-app-vue/package.json | 2 +- .../template-doc-i18n/package.json | 2 +- .../create-rstack/template-doc/package.json | 2 +- .../template-lib-node-ts/package.json | 2 +- .../template-lib-node/package.json | 2 +- .../template-lib-react-ts/package.json | 2 +- .../template-lib-react/package.json | 2 +- .../template-lib-solid-ts/package.json | 2 +- .../template-lib-solid/package.json | 2 +- .../template-lib-svelte-ts/package.json | 2 +- .../template-lib-svelte/package.json | 2 +- .../template-lib-vue-ts/package.json | 2 +- .../template-lib-vue/package.json | 2 +- packages/rstack/binding.cjs | 108 +++++++++--------- packages/rstack/package.json | 2 +- 29 files changed, 82 insertions(+), 82 deletions(-) diff --git a/packages/create-rstack/package.json b/packages/create-rstack/package.json index 9f3ce506..b74c44fd 100644 --- a/packages/create-rstack/package.json +++ b/packages/create-rstack/package.json @@ -1,6 +1,6 @@ { "name": "create-rstack", - "version": "3.2.4", + "version": "3.2.5", "description": "Create a new Rstack project", "homepage": "https://rstack.rs", "bugs": { diff --git a/packages/create-rstack/template-app-lit-ts/package.json b/packages/create-rstack/template-app-lit-ts/package.json index 58d2da64..d118f935 100644 --- a/packages/create-rstack/template-app-lit-ts/package.json +++ b/packages/create-rstack/template-app-lit-ts/package.json @@ -19,7 +19,7 @@ "devDependencies": { "@types/node": "^26.3.0", "happy-dom": "^20.11.6", - "rstack": "^0.6.4", + "rstack": "^0.6.5", "typescript": "^7.0.2" } } diff --git a/packages/create-rstack/template-app-lit/package.json b/packages/create-rstack/template-app-lit/package.json index c962013b..c56e16b6 100644 --- a/packages/create-rstack/template-app-lit/package.json +++ b/packages/create-rstack/template-app-lit/package.json @@ -18,6 +18,6 @@ }, "devDependencies": { "happy-dom": "^20.11.6", - "rstack": "^0.6.4" + "rstack": "^0.6.5" } } diff --git a/packages/create-rstack/template-app-preact-ts/package.json b/packages/create-rstack/template-app-preact-ts/package.json index 12844158..a66ac4b0 100644 --- a/packages/create-rstack/template-app-preact-ts/package.json +++ b/packages/create-rstack/template-app-preact-ts/package.json @@ -22,7 +22,7 @@ "@testing-library/preact": "^3.2.4", "@types/node": "^26.3.0", "happy-dom": "^20.11.6", - "rstack": "^0.6.4", + "rstack": "^0.6.5", "typescript": "^7.0.2" } } diff --git a/packages/create-rstack/template-app-preact/package.json b/packages/create-rstack/template-app-preact/package.json index 1265a010..1fbedb16 100644 --- a/packages/create-rstack/template-app-preact/package.json +++ b/packages/create-rstack/template-app-preact/package.json @@ -21,6 +21,6 @@ "@testing-library/jest-dom": "^7.0.1", "@testing-library/preact": "^3.2.4", "happy-dom": "^20.11.6", - "rstack": "^0.6.4" + "rstack": "^0.6.5" } } diff --git a/packages/create-rstack/template-app-react-ts/package.json b/packages/create-rstack/template-app-react-ts/package.json index 6cbccd72..66078f79 100644 --- a/packages/create-rstack/template-app-react-ts/package.json +++ b/packages/create-rstack/template-app-react-ts/package.json @@ -26,7 +26,7 @@ "@types/react": "^19.2.18", "@types/react-dom": "^19.2.5", "happy-dom": "^20.11.6", - "rstack": "^0.6.4", + "rstack": "^0.6.5", "typescript": "^7.0.2" } } diff --git a/packages/create-rstack/template-app-react/package.json b/packages/create-rstack/template-app-react/package.json index fef8482c..c80de93a 100644 --- a/packages/create-rstack/template-app-react/package.json +++ b/packages/create-rstack/template-app-react/package.json @@ -23,6 +23,6 @@ "@testing-library/jest-dom": "^7.0.1", "@testing-library/react": "^16.3.2", "happy-dom": "^20.11.6", - "rstack": "^0.6.4" + "rstack": "^0.6.5" } } diff --git a/packages/create-rstack/template-app-solid-ts/package.json b/packages/create-rstack/template-app-solid-ts/package.json index 7241a9dc..10cdb4e1 100644 --- a/packages/create-rstack/template-app-solid-ts/package.json +++ b/packages/create-rstack/template-app-solid-ts/package.json @@ -23,7 +23,7 @@ "@testing-library/jest-dom": "^7.0.1", "@types/node": "^26.3.0", "happy-dom": "^20.11.6", - "rstack": "^0.6.4", + "rstack": "^0.6.5", "typescript": "^7.0.2" } } diff --git a/packages/create-rstack/template-app-solid/package.json b/packages/create-rstack/template-app-solid/package.json index f3b4103d..5662328e 100644 --- a/packages/create-rstack/template-app-solid/package.json +++ b/packages/create-rstack/template-app-solid/package.json @@ -22,6 +22,6 @@ "@solidjs/testing-library": "^0.8.10", "@testing-library/jest-dom": "^7.0.1", "happy-dom": "^20.11.6", - "rstack": "^0.6.4" + "rstack": "^0.6.5" } } diff --git a/packages/create-rstack/template-app-svelte-ts/package.json b/packages/create-rstack/template-app-svelte-ts/package.json index 5a8c1078..aed65642 100644 --- a/packages/create-rstack/template-app-svelte-ts/package.json +++ b/packages/create-rstack/template-app-svelte-ts/package.json @@ -23,7 +23,7 @@ "@types/node": "^26.3.0", "happy-dom": "^20.11.6", "prettier-plugin-svelte": "^4.1.1", - "rstack": "^0.6.4", + "rstack": "^0.6.5", "svelte-check": "^4.7.6", "typescript": "^6.0.3" } diff --git a/packages/create-rstack/template-app-svelte/package.json b/packages/create-rstack/template-app-svelte/package.json index 05cca922..37e7d611 100644 --- a/packages/create-rstack/template-app-svelte/package.json +++ b/packages/create-rstack/template-app-svelte/package.json @@ -22,6 +22,6 @@ "@testing-library/svelte": "^5.4.2", "happy-dom": "^20.11.6", "prettier-plugin-svelte": "^4.1.1", - "rstack": "^0.6.4" + "rstack": "^0.6.5" } } diff --git a/packages/create-rstack/template-app-vanilla-ts/package.json b/packages/create-rstack/template-app-vanilla-ts/package.json index 042d0f68..09a62e22 100644 --- a/packages/create-rstack/template-app-vanilla-ts/package.json +++ b/packages/create-rstack/template-app-vanilla-ts/package.json @@ -18,7 +18,7 @@ "@testing-library/jest-dom": "^7.0.1", "@types/node": "^26.3.0", "happy-dom": "^20.11.6", - "rstack": "^0.6.4", + "rstack": "^0.6.5", "typescript": "^7.0.2" } } diff --git a/packages/create-rstack/template-app-vanilla/package.json b/packages/create-rstack/template-app-vanilla/package.json index 595492be..a4d7a945 100644 --- a/packages/create-rstack/template-app-vanilla/package.json +++ b/packages/create-rstack/template-app-vanilla/package.json @@ -17,6 +17,6 @@ "@testing-library/dom": "^10.4.1", "@testing-library/jest-dom": "^7.0.1", "happy-dom": "^20.11.6", - "rstack": "^0.6.4" + "rstack": "^0.6.5" } } diff --git a/packages/create-rstack/template-app-vue-ts/package.json b/packages/create-rstack/template-app-vue-ts/package.json index 3c50bb7d..6e2aec94 100644 --- a/packages/create-rstack/template-app-vue-ts/package.json +++ b/packages/create-rstack/template-app-vue-ts/package.json @@ -22,7 +22,7 @@ "@types/node": "^26.3.0", "@vue/test-utils": "^2.4.11", "happy-dom": "^20.11.6", - "rstack": "^0.6.4", + "rstack": "^0.6.5", "typescript": "^6.0.3", "vue-tsc": "^3.3.11" } diff --git a/packages/create-rstack/template-app-vue/package.json b/packages/create-rstack/template-app-vue/package.json index e988f1c7..37f72784 100644 --- a/packages/create-rstack/template-app-vue/package.json +++ b/packages/create-rstack/template-app-vue/package.json @@ -21,6 +21,6 @@ "@testing-library/jest-dom": "^7.0.1", "@vue/test-utils": "^2.4.11", "happy-dom": "^20.11.6", - "rstack": "^0.6.4" + "rstack": "^0.6.5" } } diff --git a/packages/create-rstack/template-doc-i18n/package.json b/packages/create-rstack/template-doc-i18n/package.json index d0e3f0ca..9019417b 100644 --- a/packages/create-rstack/template-doc-i18n/package.json +++ b/packages/create-rstack/template-doc-i18n/package.json @@ -18,7 +18,7 @@ "@types/react-dom": "^19.2.5", "react": "^19.2.8", "react-dom": "^19.2.8", - "rstack": "^0.6.4", + "rstack": "^0.6.5", "typescript": "^7.0.2" } } diff --git a/packages/create-rstack/template-doc/package.json b/packages/create-rstack/template-doc/package.json index e406861a..dd6d7e90 100644 --- a/packages/create-rstack/template-doc/package.json +++ b/packages/create-rstack/template-doc/package.json @@ -18,7 +18,7 @@ "@types/react-dom": "^19.2.5", "react": "^19.2.8", "react-dom": "^19.2.8", - "rstack": "^0.6.4", + "rstack": "^0.6.5", "typescript": "^7.0.2" } } diff --git a/packages/create-rstack/template-lib-node-ts/package.json b/packages/create-rstack/template-lib-node-ts/package.json index edf088dd..bd34c049 100644 --- a/packages/create-rstack/template-lib-node-ts/package.json +++ b/packages/create-rstack/template-lib-node-ts/package.json @@ -25,7 +25,7 @@ }, "devDependencies": { "@types/node": "^26.3.0", - "rstack": "^0.6.4", + "rstack": "^0.6.5", "typescript": "^7.0.2" }, "engines": { diff --git a/packages/create-rstack/template-lib-node/package.json b/packages/create-rstack/template-lib-node/package.json index b7306bb8..b840d29f 100644 --- a/packages/create-rstack/template-lib-node/package.json +++ b/packages/create-rstack/template-lib-node/package.json @@ -18,7 +18,7 @@ "test:watch": "rs test --watch" }, "devDependencies": { - "rstack": "^0.6.4" + "rstack": "^0.6.5" }, "engines": { "node": ">=22.12.0" diff --git a/packages/create-rstack/template-lib-react-ts/package.json b/packages/create-rstack/template-lib-react-ts/package.json index 0d472104..926cd240 100644 --- a/packages/create-rstack/template-lib-react-ts/package.json +++ b/packages/create-rstack/template-lib-react-ts/package.json @@ -33,7 +33,7 @@ "happy-dom": "^20.11.6", "react": "^19.2.8", "react-dom": "^19.2.8", - "rstack": "^0.6.4", + "rstack": "^0.6.5", "typescript": "^7.0.2" }, "peerDependencies": { diff --git a/packages/create-rstack/template-lib-react/package.json b/packages/create-rstack/template-lib-react/package.json index 130852cf..2c438d14 100644 --- a/packages/create-rstack/template-lib-react/package.json +++ b/packages/create-rstack/template-lib-react/package.json @@ -25,7 +25,7 @@ "happy-dom": "^20.11.6", "react": "^19.2.8", "react-dom": "^19.2.8", - "rstack": "^0.6.4" + "rstack": "^0.6.5" }, "peerDependencies": { "react": ">=18.0.0", diff --git a/packages/create-rstack/template-lib-solid-ts/package.json b/packages/create-rstack/template-lib-solid-ts/package.json index 63e5d3a6..2b76b83e 100644 --- a/packages/create-rstack/template-lib-solid-ts/package.json +++ b/packages/create-rstack/template-lib-solid-ts/package.json @@ -30,7 +30,7 @@ "@testing-library/jest-dom": "^7.0.1", "@types/node": "^26.3.0", "happy-dom": "^20.11.6", - "rstack": "^0.6.4", + "rstack": "^0.6.5", "solid-js": "^1.9.15", "typescript": "^7.0.2" }, diff --git a/packages/create-rstack/template-lib-solid/package.json b/packages/create-rstack/template-lib-solid/package.json index 1f0773a1..8b562a3b 100644 --- a/packages/create-rstack/template-lib-solid/package.json +++ b/packages/create-rstack/template-lib-solid/package.json @@ -27,7 +27,7 @@ "@solidjs/testing-library": "^0.8.10", "@testing-library/jest-dom": "^7.0.1", "happy-dom": "^20.11.6", - "rstack": "^0.6.4", + "rstack": "^0.6.5", "solid-js": "^1.9.15" }, "peerDependencies": { diff --git a/packages/create-rstack/template-lib-svelte-ts/package.json b/packages/create-rstack/template-lib-svelte-ts/package.json index 42af06ab..900cf614 100644 --- a/packages/create-rstack/template-lib-svelte-ts/package.json +++ b/packages/create-rstack/template-lib-svelte-ts/package.json @@ -27,7 +27,7 @@ "@types/node": "^26.3.0", "happy-dom": "^20.11.6", "prettier-plugin-svelte": "^4.1.1", - "rstack": "^0.6.4", + "rstack": "^0.6.5", "svelte": "^5.56.10", "svelte-check": "^4.7.6", "svelte2tsx": "^0.7.61", diff --git a/packages/create-rstack/template-lib-svelte/package.json b/packages/create-rstack/template-lib-svelte/package.json index 39f0043f..1606b22e 100644 --- a/packages/create-rstack/template-lib-svelte/package.json +++ b/packages/create-rstack/template-lib-svelte/package.json @@ -20,7 +20,7 @@ "@rsbuild/plugin-svelte": "^2.0.1", "happy-dom": "^20.11.6", "prettier-plugin-svelte": "^4.1.1", - "rstack": "^0.6.4", + "rstack": "^0.6.5", "svelte": "^5.56.10" }, "peerDependencies": { diff --git a/packages/create-rstack/template-lib-vue-ts/package.json b/packages/create-rstack/template-lib-vue-ts/package.json index 6615d760..44d7ce91 100644 --- a/packages/create-rstack/template-lib-vue-ts/package.json +++ b/packages/create-rstack/template-lib-vue-ts/package.json @@ -28,7 +28,7 @@ "@types/node": "^26.3.0", "@vue/test-utils": "^2.4.11", "happy-dom": "^20.11.6", - "rstack": "^0.6.4", + "rstack": "^0.6.5", "typescript": "^6.0.3", "vue": "^3.5.41", "vue-tsc": "^3.3.11" diff --git a/packages/create-rstack/template-lib-vue/package.json b/packages/create-rstack/template-lib-vue/package.json index 02fe56f3..7e7164ab 100644 --- a/packages/create-rstack/template-lib-vue/package.json +++ b/packages/create-rstack/template-lib-vue/package.json @@ -21,7 +21,7 @@ "@testing-library/jest-dom": "^7.0.1", "@vue/test-utils": "^2.4.11", "happy-dom": "^20.11.6", - "rstack": "^0.6.4", + "rstack": "^0.6.5", "vue": "^3.5.41" }, "peerDependencies": { diff --git a/packages/rstack/binding.cjs b/packages/rstack/binding.cjs index 37dce54b..62e236d8 100644 --- a/packages/rstack/binding.cjs +++ b/packages/rstack/binding.cjs @@ -77,8 +77,8 @@ function requireNative() { try { const binding = require('@rstackjs/cli-android-arm64') const bindingPackageVersion = require('@rstackjs/cli-android-arm64/package.json').version - if (bindingPackageVersion !== '0.6.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { - throw new Error(`Native binding package version mismatch, expected 0.6.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if (bindingPackageVersion !== '0.6.5' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 0.6.5 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) } return binding } catch (e) { @@ -93,8 +93,8 @@ function requireNative() { try { const binding = require('@rstackjs/cli-android-arm-eabi') const bindingPackageVersion = require('@rstackjs/cli-android-arm-eabi/package.json').version - if (bindingPackageVersion !== '0.6.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { - throw new Error(`Native binding package version mismatch, expected 0.6.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if (bindingPackageVersion !== '0.6.5' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 0.6.5 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) } return binding } catch (e) { @@ -114,8 +114,8 @@ function requireNative() { try { const binding = require('@rstackjs/cli-win32-x64-gnu') const bindingPackageVersion = require('@rstackjs/cli-win32-x64-gnu/package.json').version - if (bindingPackageVersion !== '0.6.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { - throw new Error(`Native binding package version mismatch, expected 0.6.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if (bindingPackageVersion !== '0.6.5' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 0.6.5 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) } return binding } catch (e) { @@ -130,8 +130,8 @@ function requireNative() { try { const binding = require('@rstackjs/cli-win32-x64-msvc') const bindingPackageVersion = require('@rstackjs/cli-win32-x64-msvc/package.json').version - if (bindingPackageVersion !== '0.6.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { - throw new Error(`Native binding package version mismatch, expected 0.6.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if (bindingPackageVersion !== '0.6.5' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 0.6.5 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) } return binding } catch (e) { @@ -147,8 +147,8 @@ function requireNative() { try { const binding = require('@rstackjs/cli-win32-ia32-msvc') const bindingPackageVersion = require('@rstackjs/cli-win32-ia32-msvc/package.json').version - if (bindingPackageVersion !== '0.6.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { - throw new Error(`Native binding package version mismatch, expected 0.6.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if (bindingPackageVersion !== '0.6.5' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 0.6.5 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) } return binding } catch (e) { @@ -163,8 +163,8 @@ function requireNative() { try { const binding = require('@rstackjs/cli-win32-arm64-msvc') const bindingPackageVersion = require('@rstackjs/cli-win32-arm64-msvc/package.json').version - if (bindingPackageVersion !== '0.6.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { - throw new Error(`Native binding package version mismatch, expected 0.6.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if (bindingPackageVersion !== '0.6.5' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 0.6.5 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) } return binding } catch (e) { @@ -182,8 +182,8 @@ function requireNative() { try { const binding = require('@rstackjs/cli-darwin-universal') const bindingPackageVersion = require('@rstackjs/cli-darwin-universal/package.json').version - if (bindingPackageVersion !== '0.6.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { - throw new Error(`Native binding package version mismatch, expected 0.6.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if (bindingPackageVersion !== '0.6.5' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 0.6.5 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) } return binding } catch (e) { @@ -198,8 +198,8 @@ function requireNative() { try { const binding = require('@rstackjs/cli-darwin-x64') const bindingPackageVersion = require('@rstackjs/cli-darwin-x64/package.json').version - if (bindingPackageVersion !== '0.6.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { - throw new Error(`Native binding package version mismatch, expected 0.6.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if (bindingPackageVersion !== '0.6.5' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 0.6.5 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) } return binding } catch (e) { @@ -214,8 +214,8 @@ function requireNative() { try { const binding = require('@rstackjs/cli-darwin-arm64') const bindingPackageVersion = require('@rstackjs/cli-darwin-arm64/package.json').version - if (bindingPackageVersion !== '0.6.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { - throw new Error(`Native binding package version mismatch, expected 0.6.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if (bindingPackageVersion !== '0.6.5' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 0.6.5 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) } return binding } catch (e) { @@ -234,8 +234,8 @@ function requireNative() { try { const binding = require('@rstackjs/cli-freebsd-x64') const bindingPackageVersion = require('@rstackjs/cli-freebsd-x64/package.json').version - if (bindingPackageVersion !== '0.6.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { - throw new Error(`Native binding package version mismatch, expected 0.6.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if (bindingPackageVersion !== '0.6.5' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 0.6.5 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) } return binding } catch (e) { @@ -250,8 +250,8 @@ function requireNative() { try { const binding = require('@rstackjs/cli-freebsd-arm64') const bindingPackageVersion = require('@rstackjs/cli-freebsd-arm64/package.json').version - if (bindingPackageVersion !== '0.6.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { - throw new Error(`Native binding package version mismatch, expected 0.6.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if (bindingPackageVersion !== '0.6.5' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 0.6.5 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) } return binding } catch (e) { @@ -271,8 +271,8 @@ function requireNative() { try { const binding = require('@rstackjs/cli-linux-x64-musl') const bindingPackageVersion = require('@rstackjs/cli-linux-x64-musl/package.json').version - if (bindingPackageVersion !== '0.6.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { - throw new Error(`Native binding package version mismatch, expected 0.6.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if (bindingPackageVersion !== '0.6.5' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 0.6.5 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) } return binding } catch (e) { @@ -287,8 +287,8 @@ function requireNative() { try { const binding = require('@rstackjs/cli-linux-x64-gnu') const bindingPackageVersion = require('@rstackjs/cli-linux-x64-gnu/package.json').version - if (bindingPackageVersion !== '0.6.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { - throw new Error(`Native binding package version mismatch, expected 0.6.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if (bindingPackageVersion !== '0.6.5' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 0.6.5 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) } return binding } catch (e) { @@ -305,8 +305,8 @@ function requireNative() { try { const binding = require('@rstackjs/cli-linux-arm64-musl') const bindingPackageVersion = require('@rstackjs/cli-linux-arm64-musl/package.json').version - if (bindingPackageVersion !== '0.6.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { - throw new Error(`Native binding package version mismatch, expected 0.6.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if (bindingPackageVersion !== '0.6.5' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 0.6.5 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) } return binding } catch (e) { @@ -321,8 +321,8 @@ function requireNative() { try { const binding = require('@rstackjs/cli-linux-arm64-gnu') const bindingPackageVersion = require('@rstackjs/cli-linux-arm64-gnu/package.json').version - if (bindingPackageVersion !== '0.6.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { - throw new Error(`Native binding package version mismatch, expected 0.6.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if (bindingPackageVersion !== '0.6.5' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 0.6.5 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) } return binding } catch (e) { @@ -339,8 +339,8 @@ function requireNative() { try { const binding = require('@rstackjs/cli-linux-arm-musleabihf') const bindingPackageVersion = require('@rstackjs/cli-linux-arm-musleabihf/package.json').version - if (bindingPackageVersion !== '0.6.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { - throw new Error(`Native binding package version mismatch, expected 0.6.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if (bindingPackageVersion !== '0.6.5' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 0.6.5 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) } return binding } catch (e) { @@ -355,8 +355,8 @@ function requireNative() { try { const binding = require('@rstackjs/cli-linux-arm-gnueabihf') const bindingPackageVersion = require('@rstackjs/cli-linux-arm-gnueabihf/package.json').version - if (bindingPackageVersion !== '0.6.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { - throw new Error(`Native binding package version mismatch, expected 0.6.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if (bindingPackageVersion !== '0.6.5' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 0.6.5 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) } return binding } catch (e) { @@ -373,8 +373,8 @@ function requireNative() { try { const binding = require('@rstackjs/cli-linux-loong64-musl') const bindingPackageVersion = require('@rstackjs/cli-linux-loong64-musl/package.json').version - if (bindingPackageVersion !== '0.6.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { - throw new Error(`Native binding package version mismatch, expected 0.6.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if (bindingPackageVersion !== '0.6.5' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 0.6.5 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) } return binding } catch (e) { @@ -389,8 +389,8 @@ function requireNative() { try { const binding = require('@rstackjs/cli-linux-loong64-gnu') const bindingPackageVersion = require('@rstackjs/cli-linux-loong64-gnu/package.json').version - if (bindingPackageVersion !== '0.6.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { - throw new Error(`Native binding package version mismatch, expected 0.6.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if (bindingPackageVersion !== '0.6.5' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 0.6.5 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) } return binding } catch (e) { @@ -407,8 +407,8 @@ function requireNative() { try { const binding = require('@rstackjs/cli-linux-riscv64-musl') const bindingPackageVersion = require('@rstackjs/cli-linux-riscv64-musl/package.json').version - if (bindingPackageVersion !== '0.6.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { - throw new Error(`Native binding package version mismatch, expected 0.6.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if (bindingPackageVersion !== '0.6.5' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 0.6.5 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) } return binding } catch (e) { @@ -423,8 +423,8 @@ function requireNative() { try { const binding = require('@rstackjs/cli-linux-riscv64-gnu') const bindingPackageVersion = require('@rstackjs/cli-linux-riscv64-gnu/package.json').version - if (bindingPackageVersion !== '0.6.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { - throw new Error(`Native binding package version mismatch, expected 0.6.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if (bindingPackageVersion !== '0.6.5' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 0.6.5 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) } return binding } catch (e) { @@ -440,8 +440,8 @@ function requireNative() { try { const binding = require('@rstackjs/cli-linux-ppc64-gnu') const bindingPackageVersion = require('@rstackjs/cli-linux-ppc64-gnu/package.json').version - if (bindingPackageVersion !== '0.6.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { - throw new Error(`Native binding package version mismatch, expected 0.6.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if (bindingPackageVersion !== '0.6.5' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 0.6.5 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) } return binding } catch (e) { @@ -456,8 +456,8 @@ function requireNative() { try { const binding = require('@rstackjs/cli-linux-s390x-gnu') const bindingPackageVersion = require('@rstackjs/cli-linux-s390x-gnu/package.json').version - if (bindingPackageVersion !== '0.6.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { - throw new Error(`Native binding package version mismatch, expected 0.6.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if (bindingPackageVersion !== '0.6.5' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 0.6.5 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) } return binding } catch (e) { @@ -476,8 +476,8 @@ function requireNative() { try { const binding = require('@rstackjs/cli-openharmony-arm64') const bindingPackageVersion = require('@rstackjs/cli-openharmony-arm64/package.json').version - if (bindingPackageVersion !== '0.6.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { - throw new Error(`Native binding package version mismatch, expected 0.6.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if (bindingPackageVersion !== '0.6.5' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 0.6.5 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) } return binding } catch (e) { @@ -492,8 +492,8 @@ function requireNative() { try { const binding = require('@rstackjs/cli-openharmony-x64') const bindingPackageVersion = require('@rstackjs/cli-openharmony-x64/package.json').version - if (bindingPackageVersion !== '0.6.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { - throw new Error(`Native binding package version mismatch, expected 0.6.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if (bindingPackageVersion !== '0.6.5' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 0.6.5 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) } return binding } catch (e) { @@ -508,8 +508,8 @@ function requireNative() { try { const binding = require('@rstackjs/cli-openharmony-arm') const bindingPackageVersion = require('@rstackjs/cli-openharmony-arm/package.json').version - if (bindingPackageVersion !== '0.6.4' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { - throw new Error(`Native binding package version mismatch, expected 0.6.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if (bindingPackageVersion !== '0.6.5' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 0.6.5 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) } return binding } catch (e) { @@ -648,8 +648,8 @@ if (!nativeBinding || forceWasi) { if (!candidateFailed) { if (process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { const bindingPackageVersion = require('@rstackjs/cli-wasm32-wasi/package.json').version - if (bindingPackageVersion !== '0.6.4') { - throw new Error(`WASI binding package version mismatch, expected 0.6.4 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if (bindingPackageVersion !== '0.6.5') { + throw new Error(`WASI binding package version mismatch, expected 0.6.5 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) } } wasiBinding = require('@rstackjs/cli-wasm32-wasi') diff --git a/packages/rstack/package.json b/packages/rstack/package.json index dea1a96b..a53a50eb 100644 --- a/packages/rstack/package.json +++ b/packages/rstack/package.json @@ -1,6 +1,6 @@ { "name": "rstack", - "version": "0.6.4", + "version": "0.6.5", "description": "One CLI for JavaScript development, powered by Rstack.", "homepage": "https://rstack.rs", "bugs": {