diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index ea7d81363..1d0f9a80a 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -39,3 +39,34 @@ jobs:
- name: GitHub Actions linter
uses: docker://rhysd/actionlint:1.7.12@sha256:b1934ee5f1c509618f2508e6eb47ee0d3520686341fec936f3b79331f9315667
+
+ vite-toolchain-drift:
+ name: Check vite-plus/vite/vitest drift [vp migrate]
+ runs-on: ubuntu-latest
+ permissions:
+ contents: read
+
+ steps:
+ - name: Checkout
+ uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
+ with:
+ persist-credentials: false
+
+ - name: Setup Node.js
+ uses: ./.github/actions/setup-node
+
+ # Fails if vite-plus, vite, vitest, or the @vitest/* family have drifted
+ # out of the alignment vp migrate expects (e.g. a raw version pin
+ # instead of a catalog: reference, or a version vite-plus does not
+ # bundle). Complements the Renovate `vite monorepo` packageRules group,
+ # which prevents a *Renovate* PR from splitting these updates, by also
+ # catching drift introduced by a manual edit. See
+ # openspec/changes/fix-vite-plus-dependency-drift.
+ - name: Run vp migrate and check for drift
+ run: |
+ pnpm exec vp migrate --no-interactive
+ if ! git diff --quiet; then
+ echo "::error::vp migrate produced changes. This means vite-plus, vite, vitest, or the @vitest/* family have drifted out of alignment. Run 'pnpm exec vp migrate' locally and commit the result."
+ git diff
+ exit 1
+ fi
diff --git a/.github/workflows/renovate-vite-migrate.yml b/.github/workflows/renovate-vite-migrate.yml
new file mode 100644
index 000000000..48281d8d6
--- /dev/null
+++ b/.github/workflows/renovate-vite-migrate.yml
@@ -0,0 +1,65 @@
+name: Renovate vite toolchain reconcile
+
+# Runs `vp migrate` against Renovate's grouped vite-plus/vite/vitest PR branch
+# and pushes back any reconciliation it makes (catalog/override alignment),
+# so the versions vite-plus bundles internally and the versions this project
+# depends on directly can never land out of sync. See
+# openspec/changes/fix-vite-plus-dependency-drift for the incident history
+# and rationale.
+#
+# Triggered on file changes rather than branch name, since Renovate's grouped
+# branch/slug naming for the "vite monorepo" packageRules group has not been
+# empirically confirmed yet (see design.md open questions).
+on:
+ pull_request:
+ types: [opened, synchronize]
+ paths:
+ - package.json
+ - pnpm-lock.yaml
+ - pnpm-workspace.yaml
+
+permissions: {}
+
+jobs:
+ vp-migrate:
+ name: Reconcile vite-plus/vite/vitest versions
+ runs-on: ubuntu-latest
+ # Only Renovate's own branches: this workflow pushes commits back onto
+ # the PR branch, which would be surprising (and is unnecessary) on a
+ # human-authored PR.
+ if: github.event.pull_request.user.login == 'renovate[bot]'
+ permissions:
+ contents: write
+
+ steps:
+ - name: Checkout PR head
+ uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
+ with:
+ ref: ${{ github.event.pull_request.head.ref }}
+ persist-credentials: true
+
+ - name: Setup Node.js
+ uses: ./.github/actions/setup-node
+
+ - name: Run vp migrate
+ run: pnpm exec vp migrate --no-interactive
+
+ - name: Commit and push reconciliation, if any
+ env:
+ GIT_AUTHOR_NAME: github-actions[bot]
+ GIT_AUTHOR_EMAIL: 41898282+github-actions[bot]@users.noreply.github.com
+ GIT_COMMITTER_NAME: github-actions[bot]
+ GIT_COMMITTER_EMAIL: 41898282+github-actions[bot]@users.noreply.github.com
+ # Routed through env rather than interpolated directly into the
+ # script, per actionlint/zizmor: github.event.pull_request.head.ref
+ # is attacker-influenceable (a PR author controls their own branch
+ # name) and must not be expanded directly inside a run: block.
+ HEAD_REF: ${{ github.event.pull_request.head.ref }}
+ run: |
+ if git diff --quiet; then
+ echo "vp migrate produced no changes; nothing to commit."
+ exit 0
+ fi
+ git add -A
+ git commit -m "chore(deps): reconcile vite-plus/vite/vitest versions via vp migrate"
+ git push origin "HEAD:${HEAD_REF}"
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 2dae854fa..cc46b80f5 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -39,6 +39,9 @@ pnpm dev
Tooling is unified through [Vite+][vite-plus-website], which bundles the linter (oxlint), formatter (oxfmt), test runner (Vitest), and dev/build pipeline (Vite).
+> [!IMPORTANT]
+> `vite-plus`, `vite`, `vitest`, and the `@vitest/*` family are version-coupled: `vite-plus` bundles/targets a specific `vite`/`vitest` release internally, and this project depends on the same real packages directly. Bumping one side independently has broken the test suite before by loading two different `vitest` copies into the test workers. Renovate groups these packages into a single PR, and CI (`vp migrate --no-interactive`, currently advisory) fails if they drift apart — but if you ever bump one of these packages by hand, always run `pnpm exec vp migrate` afterward and let it manage `package.json`/`pnpm-workspace.yaml` (catalog references), rather than pinning a raw version yourself. See `openspec/changes/fix-vite-plus-dependency-drift` for the incident history.
+
```shell
# Run lint, format, and type checks
pnpm check
diff --git a/package.json b/package.json
index 5b55240e4..4c4ea41eb 100644
--- a/package.json
+++ b/package.json
@@ -109,8 +109,8 @@
"@types/react-router-dom": "5.3.3",
"@types/semver": "7.8.0",
"@vitejs/plugin-react": "6.1.0",
- "@vitest/browser-playwright": "4.1.10",
- "@vitest/coverage-v8": "4.1.10",
+ "@vitest/browser-playwright": "catalog:",
+ "@vitest/coverage-v8": "catalog:",
"clsx": "2.1.1",
"concurrently": "10.0.5",
"date-fns": "4.4.0",
@@ -128,10 +128,11 @@
"tailwind-merge": "3.6.0",
"tailwindcss": "4.3.3",
"typescript": "7.0.2",
- "vite": "8.2.2",
+ "vite": "catalog:",
"vite-plugin-checker": "0.14.5",
"vite-plugin-electron": "1.1.1",
- "vite-plus": "0.2.9",
+ "vite-plus": "catalog:",
+ "vitest": "catalog:",
"zustand": "5.0.15"
},
"engines": {
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index f5c24b93d..70adbcf10 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -4,11 +4,29 @@ settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
+catalogs:
+ default:
+ '@vitest/browser-playwright':
+ specifier: 4.1.11
+ version: 4.1.11
+ vite:
+ specifier: npm:@voidzero-dev/vite-plus-core@0.3.0
+ version: 0.3.0
+ vite-plus:
+ specifier: 0.3.0
+ version: 0.3.0
+ vitest:
+ specifier: 4.1.11
+ version: 4.1.11
+
overrides:
react-is: 19.2.8
cross-spawn: 7.0.6
got: 11.8.6
electron: 43.2.0
+ '@vitest/coverage-v8': 4.1.11
+ vite@*: npm:@voidzero-dev/vite-plus-core@0.3.0
+ vitest@*: 4.1.11
importers:
@@ -92,13 +110,13 @@ importers:
version: 38.36.0(@types/react-dom@19.2.5(@types/react@19.2.18))(@types/react@19.2.18)(react-dom@19.2.8(react@19.2.8))(react-is@19.2.8)(react@19.2.8)
'@tailwindcss/vite':
specifier: 4.3.3
- version: 4.3.3(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))
+ version: 4.3.3(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))
'@tanstack/react-query':
specifier: 5.102.8
version: 5.102.8(react@19.2.8)
'@testing-library/jest-dom':
specifier: 7.0.1
- version: 7.0.1(@testing-library/dom@10.4.1)(vitest@4.1.10)
+ version: 7.0.1(@testing-library/dom@10.4.1)(vitest@4.1.11)
'@testing-library/react':
specifier: 16.3.3
version: 16.3.3(@testing-library/dom@10.4.1)(@types/react-dom@19.2.5(@types/react@19.2.18))(@types/react@19.2.18)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)
@@ -122,13 +140,13 @@ importers:
version: 7.8.0
'@vitejs/plugin-react':
specifier: 6.1.0
- version: 6.1.0(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))
+ version: 6.1.0(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))
'@vitest/browser-playwright':
- specifier: 4.1.10
- version: 4.1.10(playwright@1.62.1)(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))(vitest@4.1.10)
+ specifier: 'catalog:'
+ version: 4.1.11(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(playwright@1.62.1)(vitest@4.1.11)
'@vitest/coverage-v8':
- specifier: 4.1.10
- version: 4.1.10(@vitest/browser@4.1.10)(vitest@4.1.10)
+ specifier: 4.1.11
+ version: 4.1.11(@vitest/browser@4.1.11)(vitest@4.1.11)
clsx:
specifier: 2.1.1
version: 2.1.1
@@ -181,17 +199,20 @@ importers:
specifier: 7.0.2
version: 7.0.2
vite:
- specifier: 8.2.2
- version: 8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0)
+ specifier: 'catalog:'
+ version: '@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0)'
vite-plugin-checker:
specifier: 0.14.5
- version: 0.14.5(oxlint@1.77.0(oxlint-tsgolint@7.0.2001)(vite-plus@0.2.9(@types/node@24.13.3)(@vitest/browser-playwright@4.1.10)(@vitest/coverage-v8@4.1.10)(happy-dom@20.11.12)(jiti@2.7.0)(typescript@7.0.2)(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))(yaml@2.9.0)))(typescript@7.0.2)(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))
+ version: 0.14.5(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(oxlint@1.79.0(oxlint-tsgolint@7.0.2001)(vite-plus@0.3.0(@types/node@24.13.3)(@vitest/browser-playwright@4.1.11)(@vitest/coverage-v8@4.1.11)(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(happy-dom@20.11.12)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0)))(typescript@7.0.2)
vite-plugin-electron:
specifier: 1.1.1
version: 1.1.1
vite-plus:
- specifier: 0.2.9
- version: 0.2.9(@types/node@24.13.3)(@vitest/browser-playwright@4.1.10)(@vitest/coverage-v8@4.1.10)(happy-dom@20.11.12)(jiti@2.7.0)(typescript@7.0.2)(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))(yaml@2.9.0)
+ specifier: 'catalog:'
+ version: 0.3.0(@types/node@24.13.3)(@vitest/browser-playwright@4.1.11)(@vitest/coverage-v8@4.1.11)(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(happy-dom@20.11.12)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0)
+ vitest:
+ specifier: 'catalog:'
+ version: 4.1.11(@types/node@24.13.3)(@vitest/browser-playwright@4.1.11)(@vitest/browser-preview@4.1.11)(@vitest/coverage-v8@4.1.11)(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(happy-dom@20.11.12)
zustand:
specifier: 5.0.15
version: 5.0.15(@types/react@19.2.18)(react@19.2.8)
@@ -857,134 +878,131 @@ packages:
'@oddbird/popover-polyfill@0.5.2':
resolution: {integrity: sha512-iFrvar5SOMtKFOSjYvs4z9UlLqDdJbMx0mgISLcPedv+g0ac5sgeETLGtipHCVIae6HJPclNEH5aCyD1RZaEHw==}
- '@oxc-project/runtime@0.143.0':
- resolution: {integrity: sha512-zIuXUf+YGIgsPk0xlQmzTY8NCSc8jE/pSfDodlQ9H3EGZABmr+AtIjXRrnpQAXuXzhDSNqZz9cuhud8hDDLvpg==}
+ '@oxc-project/runtime@0.146.0':
+ resolution: {integrity: sha512-lbXHIpZ1MmK6zuw5txlMdIZ2waLVUIU5Gnm3sEuwJOiqDfQfbtjeHscatmeBoxbv8+If9LFM6PGh/3DcDWYIYw==}
engines: {node: ^20.19.0 || >=22.12.0}
- '@oxc-project/types@0.143.0':
- resolution: {integrity: sha512-u6JZdLBTLotrNC9Vd6vPssINdzcCzleKAH6EJKImQb7GtYvX5keN2dxkoK44stCc4tffE6QQRtZTXVSzsLUlWA==}
-
- '@oxc-project/types@0.147.0':
- resolution: {integrity: sha512-IJ3s6ltHLp45S0bh7phkX+gJO7A1Wuz2EaqpAhb8WjqDwbzMiWKHhyyT42tskaWjEYXtHtVCPpnBJVT9+dcRLg==}
+ '@oxc-project/types@0.146.0':
+ resolution: {integrity: sha512-XC0QsnnhVe7sLIWmYmdPw7x5P0h4W8vUU3Nv1ySgWXtvCz8NizoAEpGXA0sOYoJQV2Rl13LgURAHQ5cI5ILCSA==}
- '@oxfmt/binding-android-arm-eabi@0.62.0':
- resolution: {integrity: sha512-pdsv0C4gPjJ8H1+sd8u0BDx+yLACTL+rgeMIOL1ln4ihSnhw8CWXtYWgvcSkyTfgGBIzFKab+d8rx9Xl4en/Kw==}
+ '@oxfmt/binding-android-arm-eabi@0.64.0':
+ resolution: {integrity: sha512-o6uzh/jTOQeAY5TdkAeXdqv7MBRcPxiRA08zrcBtkKj5cSu/FMu0Hl7Q6Fi1KCKyCWZ6lJVjBzdsJvsKltUsGQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [android]
- '@oxfmt/binding-android-arm64@0.62.0':
- resolution: {integrity: sha512-WC3YQ7uS/KtDrjmqwBviwFKe9qeoi+eXx8aX1z/ffG23Md75myjrJaQqTuJvdOLPoa4EYTjDWH0dHXfwulCVog==}
+ '@oxfmt/binding-android-arm64@0.64.0':
+ resolution: {integrity: sha512-jRGSUeeP7p3Gynw2YaCVtjBIA6ZxY6bEB/ES5i54OhqmRTyuVg7ZgstEtzgq6GOAJd+2QZ5pvf+bFfmW5Mp9cw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [android]
- '@oxfmt/binding-darwin-arm64@0.62.0':
- resolution: {integrity: sha512-GM8Yf3LjjaR1I8PD0SfeoIlwhsh9GvSF+cQ8sf624Yxnjsyumn95aFzYfKJVefblfDIiOAnZ7QVm2sa21Er/0Q==}
+ '@oxfmt/binding-darwin-arm64@0.64.0':
+ resolution: {integrity: sha512-JINwtU2lW7nOFSqi+H2qplipNUqah9Gc1jgGmB82kTD4UnZrZIVxCJ9qEmFiKfjNq27gYLFhrUb0to86aCwMjw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [darwin]
- '@oxfmt/binding-darwin-x64@0.62.0':
- resolution: {integrity: sha512-d5THp7F8bCxLqNogEXDORRsQD6dosf3EyFtnXfBer6v+8tGdcWIjoDX9WaXrrF/26zOmL8qHpPTKCEvpBDmZkQ==}
+ '@oxfmt/binding-darwin-x64@0.64.0':
+ resolution: {integrity: sha512-gCmuswrgrOSajV4HCRFkVCGIruPq8bjYuPYgSE2WQB3mD6XrdyZ3JMSRZCkQ8zCxOyGWriBo6QoZ5nmMHQ1BfA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [darwin]
- '@oxfmt/binding-freebsd-x64@0.62.0':
- resolution: {integrity: sha512-1DnrtXGZooOZ0fHgAXZUaDQzBVh1CM2MNW4oBXyQ2aWKvCHjyljvT9fgBkOM0fEOb96X5eqtcfJ0YUVt9jj66g==}
+ '@oxfmt/binding-freebsd-x64@0.64.0':
+ resolution: {integrity: sha512-Ab8g7a38pT0MMImjh7anRSTve6buWBIlcXIFBYa5xl4s6UxEgKSc2xOOhbGtLwvXnEi2PsEDGoJh3oUU7xkehQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [freebsd]
- '@oxfmt/binding-linux-arm-gnueabihf@0.62.0':
- resolution: {integrity: sha512-4pQDHOYRH+Huqe0StIaWyvk2CVl/aTaqSrbZpA3/pLS2xH24ME7lBgYprhQF2fRkHBzhGGGKliwxFsDdHwx59g==}
+ '@oxfmt/binding-linux-arm-gnueabihf@0.64.0':
+ resolution: {integrity: sha512-BgvS3CoQ+Xy2deoZqEN8JVKabcCZi2RxA3yant8G9OAv9KuPJ9TCjHkqigzdHUVwErZxEP5d2bzLIEyKYyBDLg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
- '@oxfmt/binding-linux-arm-musleabihf@0.62.0':
- resolution: {integrity: sha512-X0jAaZJFMCVKhB6YyWVTQ/wN2DLsBcZKSMqTS76bF6riT+XZdtg2FPEdjDvdVbunO9cG+tWiVaEs4Zs38lxYog==}
+ '@oxfmt/binding-linux-arm-musleabihf@0.64.0':
+ resolution: {integrity: sha512-QXpNxwoMj0YvnceCNZadNSden3bIcnvjn/sDp/rwZhRoZoZYGpHvtPyhGsdJz9uvT9GkaMW7SsLddurU56dt8w==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
- '@oxfmt/binding-linux-arm64-gnu@0.62.0':
- resolution: {integrity: sha512-682Z8T5s8T5ATArYtsejKvbIfd8LEAXyyDkKkoZVq8HND7Vx8TYLlrDjDSeYfodMeVwHOgkj13lJYR8cj6vUSg==}
+ '@oxfmt/binding-linux-arm64-gnu@0.64.0':
+ resolution: {integrity: sha512-BBgH3I1ppDsI5pZ4Pdhw0ceYxwVCfbU/bZEBCeZ6caRS9x0ZabErxubP7riGUn11PXZBhe8DYdjkDKP1FlVQ5w==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@oxfmt/binding-linux-arm64-musl@0.62.0':
- resolution: {integrity: sha512-lk25fAl7KWaLWVJcW0CHEXB7QlQZtx5eDkjpaGMK0hzXTjUe0Wmlu8IKuFHoviSOcEJedRTs4VE/506VqGxGew==}
+ '@oxfmt/binding-linux-arm64-musl@0.64.0':
+ resolution: {integrity: sha512-v19HSjC/BGXdt26qEvKZtwAHgGmQ2Agcap2kQP+KIqoRZqivVzYth3ui2dJA1i+6/fjpjga85lIOaJJjQ/bOOw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@oxfmt/binding-linux-ppc64-gnu@0.62.0':
- resolution: {integrity: sha512-SFyNqHQLwySceWNLhiSldx7wPXRAzP0L0WcW9GegP3uWrpZGJiZlQO85NbHAFPEfxR9PhZ9qSnZryEh7+v+4Gw==}
+ '@oxfmt/binding-linux-ppc64-gnu@0.64.0':
+ resolution: {integrity: sha512-PElLnOo4xFTBZrxPhgTIj0eHqZXwEBQoNWtb7facUV170T0B0FRET0iNbb3LUeLWTybkUW+vsdyv4ihOdyXGyw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [ppc64]
os: [linux]
libc: [glibc]
- '@oxfmt/binding-linux-riscv64-gnu@0.62.0':
- resolution: {integrity: sha512-KYj55C1ywJfHo6+aKDuEmUtVEdJALsC5GwayDGsI6FGz2GxFqNr/mA8nxVsNbJzm7sE5MRqTQ9ziImSzhYXysA==}
+ '@oxfmt/binding-linux-riscv64-gnu@0.64.0':
+ resolution: {integrity: sha512-Qzsg15n4F5CH+MorcRW4MkAEMiLzXmeG+DiDSbP/bBTqCmWOH3K9DHryNrve+JHlV0txS+B6Z9P5Xz+cmWeL+g==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [riscv64]
os: [linux]
libc: [glibc]
- '@oxfmt/binding-linux-riscv64-musl@0.62.0':
- resolution: {integrity: sha512-BhZDNo5GOU5nC378RhD0/XpvaEBHsH3HLgJp8YZX3A0InC7oivzA63HsRmiXFLtLSHAstEVrDf6fbC7Rs8Jh/A==}
+ '@oxfmt/binding-linux-riscv64-musl@0.64.0':
+ resolution: {integrity: sha512-/GZ358wnQ/Ez4UVnCcZIi56JkY0sOdZ+B108pqXKqZz3jLS59F4KEAB1Qv3fRlObrFEk+3L2vUQ/xoPx+3vjXw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [riscv64]
os: [linux]
libc: [musl]
- '@oxfmt/binding-linux-s390x-gnu@0.62.0':
- resolution: {integrity: sha512-UyAFmyHkgSgUJ/wOM4p3U8AC2yAFvRH5PNBs7TnK0fObTT/XSWcdr/lAzPSWaekHaZFaMeFZyk9n93Joq3J93A==}
+ '@oxfmt/binding-linux-s390x-gnu@0.64.0':
+ resolution: {integrity: sha512-/C9We3DXegowfLXtVCYHeNiU9azwCDr5cQkEtCVlc74vyn+lLQSPApJ1CZmxAduqeq/Oi3gQ+IVptyhCaTMtkQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [s390x]
os: [linux]
libc: [glibc]
- '@oxfmt/binding-linux-x64-gnu@0.62.0':
- resolution: {integrity: sha512-1iYMP0leytWazFubD/WnINJuIrzRPuoL1aWEJdlGezEzDbTxcd29R4r8IUzP2oWeKst5V02uMJgR2NILlPlG6w==}
+ '@oxfmt/binding-linux-x64-gnu@0.64.0':
+ resolution: {integrity: sha512-91KM2CeRWscIEHlj1NsW2WSnzGeq1Ehq+39bfDowTdkn+fcvK/x4Y1RcyqT7glyBjZio0ldkeCG6Usj3v7ASog==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@oxfmt/binding-linux-x64-musl@0.62.0':
- resolution: {integrity: sha512-4rA/URtJSTVNVAQz6Q8wf7SaRvOXVy+TizriT9hs/Y1XhLR/R+92uWKRQG8yFWRAIEBbFHJ6WevQcl/G9SXEfw==}
+ '@oxfmt/binding-linux-x64-musl@0.64.0':
+ resolution: {integrity: sha512-gw7uEk9I+7zoT1EYLra1eWArIzNcz8e3jkv+Noo2+o2T7wPvsNSQbfoa4DSfZlvn1i6mJ05RiZ4/omaXPDNhQg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
libc: [musl]
- '@oxfmt/binding-openharmony-arm64@0.62.0':
- resolution: {integrity: sha512-mSZuFHU2ar1KLUjXpI2QBQcJ1VsOB3mOCgQXuXCpKs19dgh4u+OaovNfrWDfiJb+ihJ2+f7YFcaO9bS2dlTCXA==}
+ '@oxfmt/binding-openharmony-arm64@0.64.0':
+ resolution: {integrity: sha512-HYHFf616FHSPSO07c09mjmXBfQ73wIVM3m0txOiooa5XZkGoxFd6B14PVj0LB0DXIqJ6wAO/dDR/NX/5UUaqnw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [openharmony]
- '@oxfmt/binding-win32-arm64-msvc@0.62.0':
- resolution: {integrity: sha512-OfwuhkcjDlqC4EgDojtiV9mzpLqeB9KqTOWPOjLEYBVdDCVSxqW3qzp/xcIxsbtI0UgGCnKvAqYKyY25kf5JZw==}
+ '@oxfmt/binding-win32-arm64-msvc@0.64.0':
+ resolution: {integrity: sha512-uQjFp081IZSWD6VAofX2iO2z01awAdHmfC+NrieWIPKrT2hZKQDyq/U18M7ifC0sm0Wz8aHY/p6+FDYIzs/CrQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [win32]
- '@oxfmt/binding-win32-ia32-msvc@0.62.0':
- resolution: {integrity: sha512-P9uDDNFRzghO3X8QAzhkjKhK7JvtABsVn8UYtFX7uor12IAnwNt8nNIctvfWj1JkQU/kE+fmLRPiw7XlrIHsZw==}
+ '@oxfmt/binding-win32-ia32-msvc@0.64.0':
+ resolution: {integrity: sha512-lNM6byTAQ881jugzFu8juJTbNRgsUTlswMA6pJmwi1XDvmIqnnb49lcUAs5gz94fCJLrVN+/X3s3jOKqx23WIQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [ia32]
os: [win32]
- '@oxfmt/binding-win32-x64-msvc@0.62.0':
- resolution: {integrity: sha512-dlI5SY7XYQCiCBafntWagCR6HcAJB/NpsLtdlPx8x08+Osz8Ok1HHz1GZuusegCe/VoJ6pAnF5a4pd5OZAq7qQ==}
+ '@oxfmt/binding-win32-x64-msvc@0.64.0':
+ resolution: {integrity: sha512-BtmbtL/QjMtF1a6C3CqoDluH2IfB6fJt62E+B9RFfUPtFk4Iz9PFS6+y/SzzOvSxc7aUk2Kphwg7Dh8lMbwu6g==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [win32]
@@ -1019,130 +1037,130 @@ packages:
cpu: [x64]
os: [win32]
- '@oxlint/binding-android-arm-eabi@1.77.0':
- resolution: {integrity: sha512-E06sKWS6PiI6HRxS1wyQg22HvApt01hI7fV+T3wUk3OSbaaP4a3hYGY/MIQDmASqCiRjBdpRQYkgMkqH82cWmQ==}
+ '@oxlint/binding-android-arm-eabi@1.79.0':
+ resolution: {integrity: sha512-TebFaaMklO/RXzTv7PucaCq9l3X6D1gA+C8H6K4njtjFOV+zWE9MKLpulcJZN9bzytbUbQIY0mZuz12nQ5Kv4Q==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [android]
- '@oxlint/binding-android-arm64@1.77.0':
- resolution: {integrity: sha512-NvsKz0KZxTp9cYWPLf+FXaSZwB3oO3peAjtukpOMBgse2vhQSoIIVqeO1yR0lEo/UcdZIDL18uq+kL0LzQ0ytA==}
+ '@oxlint/binding-android-arm64@1.79.0':
+ resolution: {integrity: sha512-KqqnOtAVgNsPPF0YSodkFZA1O80jcKoCZCTu3bgsszxA+MrMP9TLzfXitKjEj1FmrPprKDMdRDMmY3weESO9sg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [android]
- '@oxlint/binding-darwin-arm64@1.77.0':
- resolution: {integrity: sha512-bgjTn6nW4bQCFBvSvuHCpDD+sONvmpo4lGI4PxzMt1quBA+xYxhczk6RiCn3GZ9gY8uhaBbwhj9MdKGfu6T9DA==}
+ '@oxlint/binding-darwin-arm64@1.79.0':
+ resolution: {integrity: sha512-BVC2nsMzqQzRDPc5RhixkZ+m1p7iH4bxRRvqkbwDXX0PlQKm1BPy8J8cRjnAFafOq2QzI+BfO3vE8w2GZ3CBag==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [darwin]
- '@oxlint/binding-darwin-x64@1.77.0':
- resolution: {integrity: sha512-aotaIttH1R6j1Rwhx0M0htgeZyGtVQqYNTVEYMN/UcgHPquGA6kmk9OyuDc3a2GKUQBC+3C3GVQCcrRPMYqAFA==}
+ '@oxlint/binding-darwin-x64@1.79.0':
+ resolution: {integrity: sha512-p6Lm+snmhGuLKL1+CpCV8L6ijkE/qJzK2H2jG9+eKJT0n31RbY4FLsdhexekgP3bLpw4Kgde+9DZuDZQ4yIInA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [darwin]
- '@oxlint/binding-freebsd-x64@1.77.0':
- resolution: {integrity: sha512-nNx/wta7ksRAdYvq+l4AWjXkLxEXHALhENxjj2cYbQAIR4ybaA5L+hCbE63HOmft5czQ6ks+hb8vmEAnn7YGPg==}
+ '@oxlint/binding-freebsd-x64@1.79.0':
+ resolution: {integrity: sha512-qDMm0dXZnoHyRqSL4N4xUq82T4sqK5cbKSjvd/dF/YbMUXc2R1wEPf+vmA5S0qUmi0nwXfNbjXBtZaIqzQLIMg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [freebsd]
- '@oxlint/binding-linux-arm-gnueabihf@1.77.0':
- resolution: {integrity: sha512-tMLLjM7xXtzXisVCzkOTXNCy9bZVId2wteNwjohlFDR/jY6WagpEDA1c1wu4xRc20Hojaxj+V6DSR7gbKxijWA==}
+ '@oxlint/binding-linux-arm-gnueabihf@1.79.0':
+ resolution: {integrity: sha512-2od7s0nuKPzqyUZAWk9KkCyGg7eI9dwFPZg+20lB15fKFkVZ0c9ZFxqPfiBAyDTlTkh9stPI0t+JlPCqMbItVA==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
- '@oxlint/binding-linux-arm-musleabihf@1.77.0':
- resolution: {integrity: sha512-MiAFDFaqR0tmHTAyo0YDcZ5hyLREdYw/RQhc2R3cbT+8O3tB+zqPM2th9TTQ+Uo3jn/embS+DO+HyX9ztCPkOQ==}
+ '@oxlint/binding-linux-arm-musleabihf@1.79.0':
+ resolution: {integrity: sha512-ZOQUjkzDnvlhSE3+tWC3YXx94MMl+sYMlwH+u1+YGApGHOJP/YAc8ZBRFOXZ6eOBmxtXAWuS/fBcdZr8qqNO1A==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
- '@oxlint/binding-linux-arm64-gnu@1.77.0':
- resolution: {integrity: sha512-/xqQ3B16i1T4cyt/9Mn+4CpzhUXoBXp7kVpIwzOXNFLj5JmK1bIjsbSnX296Gg8A/o7oDtKWikFgBx0SLwztkw==}
+ '@oxlint/binding-linux-arm64-gnu@1.79.0':
+ resolution: {integrity: sha512-lu158FR4nGqGeRS3BQvtG85wRgU/Fy4MD5Cxp1hzJXizGiLo6u2742wJSCDKh8cFcZntvX7fcxlq4mMmfryH1g==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@oxlint/binding-linux-arm64-musl@1.77.0':
- resolution: {integrity: sha512-LSbwuRKiNCenPDcbARqAZ5RfBy7gmj7vOvfJRLeCDU3gFtSxWbhv/+VTlaUqzUhNj1gFLHB8h7ALnxa/Az6z6g==}
+ '@oxlint/binding-linux-arm64-musl@1.79.0':
+ resolution: {integrity: sha512-mbpKQeE2aflTjddaHK7MP8KP/OFbUM++lt5M635ENM8IyIdK0jm2t9pb+2v9mVVIvhF6TqA4l7F79Pll1mi+uw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@oxlint/binding-linux-ppc64-gnu@1.77.0':
- resolution: {integrity: sha512-QWdcH31mXEUe5Nq1s0CfCpceaKjIo9uZtwDjAuL681g1axf+5x8xrg/eXWaw//4NCxYZ4V4e5Hu5tvdR+pTBlg==}
+ '@oxlint/binding-linux-ppc64-gnu@1.79.0':
+ resolution: {integrity: sha512-WpGNua7gaxaHnpSDeog2ji8IDHn/QLPl9LPzwkR/FvVv58vT5BcXjRXnU+wbu3N75cpeha8CdC7ho/U2OIsB4g==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [ppc64]
os: [linux]
libc: [glibc]
- '@oxlint/binding-linux-riscv64-gnu@1.77.0':
- resolution: {integrity: sha512-GnOfYgJxbcElOiPZaDFDl406ONddwvOWk2jvAAAEjwAl4GofNoHF+/HHUIBYa6bFCArlcGPi0XjC4cU1pkgF/Q==}
+ '@oxlint/binding-linux-riscv64-gnu@1.79.0':
+ resolution: {integrity: sha512-tK1E93A5LVzISg4ngpKJnfTs7EqtIUceGI7MQ4GyDjJiLi8wPCkEyKlj2xkyKWZ1yzkDJyLHTBJ5/iFWRdnJvg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [riscv64]
os: [linux]
libc: [glibc]
- '@oxlint/binding-linux-riscv64-musl@1.77.0':
- resolution: {integrity: sha512-AyEMTUCf0xY+hHF+IxqXFQIX0yQOIR8ykpY0lJNOw9xYqOzUX8dyZfRvlG0RfXwuQn2eonf/8NrMmDSZJjdqsA==}
+ '@oxlint/binding-linux-riscv64-musl@1.79.0':
+ resolution: {integrity: sha512-qhQvUIrngXivA2A9pQ+xPCychztn/5qUv7yS3gDwXv3w7Rag+eTeeXWmRyx+t7XsW5x6LuY/8AsTq36UgFIblg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [riscv64]
os: [linux]
libc: [musl]
- '@oxlint/binding-linux-s390x-gnu@1.77.0':
- resolution: {integrity: sha512-sPLzEcNvxd/oyVQ5oZo92CiHkFkpBeRop13E/P3TPY+hZfXHKCOWKI70TE2RYwMKFJDc20EMjH16L7NZICtKTw==}
+ '@oxlint/binding-linux-s390x-gnu@1.79.0':
+ resolution: {integrity: sha512-sv6AaVgU/eE6u+6WFiQVDcPPwTxP6IJMSB9k701W2r/r6Tx465e8vPvVyRxquNH4Vy6KwRNu90mVbxXJN8+5gg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [s390x]
os: [linux]
libc: [glibc]
- '@oxlint/binding-linux-x64-gnu@1.77.0':
- resolution: {integrity: sha512-1Oh2ssH2L7lwyvkdSqaMUfsGfwU2Wfvew+obBUYjRVqhpBcUpwnsPSEr1IzVi9XqkuY10geiLsNKecqaZC34Dw==}
+ '@oxlint/binding-linux-x64-gnu@1.79.0':
+ resolution: {integrity: sha512-iFZL02deziHslb3jEX9KdqlAkYoo4fGyotchKDzdfK1f5mxlIBeiQeHhvK3iFpuEJSB4ma/qeFn9oxPiwnhUPQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@oxlint/binding-linux-x64-musl@1.77.0':
- resolution: {integrity: sha512-0j/2wRgNGO+Qj/M1uu/p57h/hFTTWWcfie0ufkbabeus2s5+/QqkCflnMOwLLN5m2GsNeWp4xdl4cPa4n7QCOQ==}
+ '@oxlint/binding-linux-x64-musl@1.79.0':
+ resolution: {integrity: sha512-3DtZR2raqObnh7wXZoFYFd0Fw7skBvcb3f7A+/lkEiDuh8hrE6vv9b/62Qxao1a9/OeHLw/FcXlXzgsW9wTRFg==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [linux]
libc: [musl]
- '@oxlint/binding-openharmony-arm64@1.77.0':
- resolution: {integrity: sha512-BJ/j54qS0usEnyDkLYURMj2iiD9h5Cyy+ppzeMSXBGRXaGRNWnj1Mw14NqWMR5E/PzdgB30OOCCzLzbRoduafw==}
+ '@oxlint/binding-openharmony-arm64@1.79.0':
+ resolution: {integrity: sha512-Oatt4GuA1WJkqzk2ozx4HrWROOi7opV3AKDw/U8qDIqeTqzsjn5K2x3REJMNjU3/KU/Bkq96Zi3CknaiDTaC/Q==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [openharmony]
- '@oxlint/binding-win32-arm64-msvc@1.77.0':
- resolution: {integrity: sha512-Yh8w+g2Lpx7StrvtYkoz9JJvXjB9wxgFChFNb85nrXm/wj/XTwGWS1hve9+900HL7llrntYB3YP+y32E3tRqzA==}
+ '@oxlint/binding-win32-arm64-msvc@1.79.0':
+ resolution: {integrity: sha512-NAgZr9Qp8nIA9rpo0JEvwiabTF/2UVqBNnupBG9X4kxXcQoScJUTi+qHhvabb9s/thgj5wQ4XcIaJvb+ZMgoKw==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [win32]
- '@oxlint/binding-win32-ia32-msvc@1.77.0':
- resolution: {integrity: sha512-zja5b7+6a7UsRFgAQSrnax5vrzliEyNPLCjfXONu/vTWswaIVZGFajJZptaeRvPE4LghtFdAzVFlexTm7MVTGA==}
+ '@oxlint/binding-win32-ia32-msvc@1.79.0':
+ resolution: {integrity: sha512-+KyXjIvcpaXmWW/j9NNY5yWjrIVxaX18VyIheQy3jwc2GSYgpCr7MGI/HxIGQ/shAL5IWEKbhsqoMpAO5Stiog==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [ia32]
os: [win32]
- '@oxlint/binding-win32-x64-msvc@1.77.0':
- resolution: {integrity: sha512-+teyvPDZ2RjUvo+SuCqS/UhaJl1QtdW5fWT5NJTV61V5MIuIS90Db9LixmtEGvXixyttiK62P96MSu3UlpviBw==}
+ '@oxlint/binding-win32-x64-msvc@1.79.0':
+ resolution: {integrity: sha512-mEelcCMMBS57sIXh2veGMNy+pQwuGtcMxHxGIZWQ5Ba9pJ5jCCUFOZB9E2JhBaxGsURe+WGe0zJp4RVre52gpQ==}
engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [win32]
- '@oxlint/plugins@1.73.0':
- resolution: {integrity: sha512-OhgMQeMmZA0dcFcX4/priaJZWdFECxiClgq6mRX6aatZEcV9PbKC3P3/v8U1hVjviT1i5U+vR8lAtBV6m4FXAA==}
+ '@oxlint/plugins@1.79.0':
+ resolution: {integrity: sha512-S0uyoxakDINJ4DPgqxGlEEvrdSMeQb7Z2lKVjxoY2gwsbZbfg2Xr8Klfeo5ZeraHmmdBCELFUHkSe6KEmBpMvg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
'@parcel/watcher-android-arm64@2.6.0':
@@ -1287,102 +1305,6 @@ packages:
'@repeaterjs/repeater@3.1.0':
resolution: {integrity: sha512-TaoVksZRSx2KWYYpyLQtMQXXeS98VsgZImzW65xmiVgbYhXLk+aEsmzPLirqVuE4/XuUapH2iMtxUzaBNDzdSQ==}
- '@rolldown/binding-android-arm-eabi@1.2.6':
- resolution: {integrity: sha512-b+jTcARdTiFLI6jB4a5XjTm0RWd6KcRfQj/I2356fxUZemiho9zQLxo0RtCuMDAyKcLo6cEltkgbQp6d1+sjjQ==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [arm]
- os: [android]
-
- '@rolldown/binding-android-arm64@1.2.6':
- resolution: {integrity: sha512-lkWU8ZJaRk9q3CIEY1Tc7vIFALp3Xw5NfGJo2hQg5oIqNgxWi1zI+IiDEK3r70BF5Dzol1tcXsnzsRc8NLhG+Q==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [arm64]
- os: [android]
-
- '@rolldown/binding-darwin-arm64@1.2.6':
- resolution: {integrity: sha512-dgR56NYnvAszm7Ob1B2/Vn0e8bUQYZH2UjVaMMtMVOCKFSfjhfLmuA/9+O+F+ajUdG6B/bSssrKW6JJYASa8jA==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [arm64]
- os: [darwin]
-
- '@rolldown/binding-darwin-x64@1.2.6':
- resolution: {integrity: sha512-vpVxFvUCFioJqug7OTvqptkc4yb8UX0AwfDmJpaR/0sWz+BUmqSVAf7c8JkUgnN8YLspb4a/N6NhTyMAmdyQ7Q==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [x64]
- os: [darwin]
-
- '@rolldown/binding-freebsd-x64@1.2.6':
- resolution: {integrity: sha512-h1wG6Y6K3JlRswxsI64qQJqBAy4vrLuHgRbc8CZMGSWTOFRY6ghMApM1NKzB2I0n5xV1fjkE18SuVl2QpLeNpA==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [x64]
- os: [freebsd]
-
- '@rolldown/binding-linux-arm-gnueabihf@1.2.6':
- resolution: {integrity: sha512-tbCiqub0q2MVWJKgF5PoAlNWCtQydiOYSLIkd8sByqK/6MMYLJRcSXSYodqYtd0O+Fw7QaVmKKlS4oL94YRZ0w==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [arm]
- os: [linux]
-
- '@rolldown/binding-linux-arm64-gnu@1.2.6':
- resolution: {integrity: sha512-oxK9+baEBPhZG5HB4URY+uU04zJWeZlH6Tb9rB5DK4DF9XR1uXNLXt5Q5ZsugTKayNCNLhkcwz/ye74hRI98dg==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [arm64]
- os: [linux]
- libc: [glibc]
-
- '@rolldown/binding-linux-arm64-musl@1.2.6':
- resolution: {integrity: sha512-muWCk27FVBEZtv0MsK8gnfSmgczA8KQ0uRVJbTABKhkRfQc38aUrcb7fhi3BNiyseFmgcRsoMfQsSNJ+DbZdSw==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [arm64]
- os: [linux]
- libc: [musl]
-
- '@rolldown/binding-linux-ppc64-gnu@1.2.6':
- resolution: {integrity: sha512-eWDoSfU7Co2qj3vgB3Dt4lj1mG6CoWbcJQkRMP3XJplyCMtuaq3LHvPFjS9QIPvMGWVadJC04Xiy0IdcVPtnwQ==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [ppc64]
- os: [linux]
- libc: [glibc]
-
- '@rolldown/binding-linux-s390x-gnu@1.2.6':
- resolution: {integrity: sha512-2bWNjRSIayvupRKxXUY2tWG9fYdoUlTqWywHRvE8Eq3GvuQ+f2HeIkve697fIt+IQs/PV8yFsdWuhp1aJ1PdnA==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [s390x]
- os: [linux]
- libc: [glibc]
-
- '@rolldown/binding-linux-x64-gnu@1.2.6':
- resolution: {integrity: sha512-KekI0gS0wLxe1UBSQSjenBVwou/JkcQPDzBPICGZjxUv9k3RteHDPBQaiOicZUFKRIH2wKEimGwVpnJsbPzu7w==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [x64]
- os: [linux]
- libc: [glibc]
-
- '@rolldown/binding-linux-x64-musl@1.2.6':
- resolution: {integrity: sha512-TvtPnfVr+HtyGiDmPK4VWmlNm7QhNNAcK5Q9A7aOXsI8545yCyaoMaicXrFZ72JzeYjaUVk7yT243zT0jzjFKQ==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [x64]
- os: [linux]
- libc: [musl]
-
- '@rolldown/binding-openharmony-arm64@1.2.6':
- resolution: {integrity: sha512-iOo0VEay2XFhaCcH0sps5XIimkSuOnNaZrf6+ZkoSOQBJPKNU48RkmJv0/lSpipexu5P+ouFgafe5IGr/DiQfg==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [arm64]
- os: [openharmony]
-
- '@rolldown/binding-win32-arm64-msvc@1.2.6':
- resolution: {integrity: sha512-y5NTmmasMS455JlOCO4ZM9krIchv3Mvm1crL1iUPGOPgEzSkves9n0SdC5Sjz6+qWDFhd8/JpfWMH8NSWNHe+A==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [arm64]
- os: [win32]
-
- '@rolldown/binding-win32-x64-msvc@1.2.6':
- resolution: {integrity: sha512-np8iZSLfXlAD4kWhiyq/u0Yt8oZDtRQ8lGhQaCXo2rl37KNjeU0GjJuwr4P3oeZ++ROfofsKNBqR5LTO8aXyWQ==}
- engines: {node: ^20.19.0 || >=22.12.0}
- cpu: [x64]
- os: [win32]
-
'@rolldown/pluginutils@1.0.1':
resolution: {integrity: sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==}
@@ -1517,7 +1439,7 @@ packages:
engines: {node: '>=22', npm: '>=6', yarn: '>=1'}
peerDependencies:
'@testing-library/dom': '>=10 <11'
- vitest: '>= 0.32'
+ vitest: 4.1.11
peerDependenciesMeta:
vitest:
optional: true
@@ -1744,36 +1666,36 @@ packages:
oxc-transform-react:
optional: true
- '@vitest/browser-playwright@4.1.10':
- resolution: {integrity: sha512-nMoXGEiRpT7m3W7NsbvrM2aKNwiNHZf+zEpUCvMteGjZFvfT96Q9fh7QyB98dvDWXiKvrLxA7bJ1mCOOv+JQPw==}
+ '@vitest/browser-playwright@4.1.11':
+ resolution: {integrity: sha512-riLBxPqwnJ0lWs2DN2WeUfYeKLoAjbP2Xx8cLQdSddzMi20sksIa6K2mPz79DyMZKKVKH2ksOC2yJvtNcZg8cg==}
peerDependencies:
playwright: '*'
- vitest: 4.1.10
+ vitest: 4.1.11
- '@vitest/browser-preview@4.1.10':
- resolution: {integrity: sha512-14MJrL59ZFkqXLjwfSk6RzTDy5Czf9UG4+8q8L6Gxjs2aPjEce/cVNYV14bXAc2BvMjUNu904+ZEZA1Xc1wtvQ==}
+ '@vitest/browser-preview@4.1.11':
+ resolution: {integrity: sha512-iPKSE6Ibayey6HFgK1V1/aHgyhx7HSRk1YMi+lnBZGmlIiNV5Uc7xRkD9Su8RDylTxDECK23t7kTHdRKoqSYDQ==}
peerDependencies:
- vitest: 4.1.10
+ vitest: 4.1.11
- '@vitest/browser@4.1.10':
- resolution: {integrity: sha512-UDwuWGwXj646CBx/bQHOaJSX7np0I8JL/UKQYa1e4QrVHH8VdWtx8eaOuf8sy0ShwDgR6NjJAsp5eF6vjF6qng==}
+ '@vitest/browser@4.1.11':
+ resolution: {integrity: sha512-bwMovvAeuTFOK5kIFevw4VEf+1gVEICv4SYK4k3knJOxl6b1zEWud8mYKD73e1B0odAn174h1MofURy2TPWf3w==}
peerDependencies:
- vitest: 4.1.10
+ vitest: 4.1.11
- '@vitest/coverage-v8@4.1.10':
- resolution: {integrity: sha512-IM49HmthevbgAO4anp1hwtoT9wYe59w0LR00gr+eagHE+ZJ5lK4sLPeO0ubgoJcwLk6dehU3R24N+FbEEKDc8g==}
+ '@vitest/coverage-v8@4.1.11':
+ resolution: {integrity: sha512-8MVGEFnJIcdGjcbfKmeq8z0pZHH0JlVtoVZH9Q/qwUp6wyFnEJUBMrw9DCaj+ra3vShGmhavjalMIhPNxZAUcw==}
peerDependencies:
- '@vitest/browser': 4.1.10
- vitest: 4.1.10
+ '@vitest/browser': 4.1.11
+ vitest: 4.1.11
peerDependenciesMeta:
'@vitest/browser':
optional: true
- '@vitest/expect@4.1.10':
- resolution: {integrity: sha512-YsCn+qAk1GWjQOWFEsEcL2gNQ0zmVmQu3T03qP6UyjhtmdtwtbuI+DASn/7iQB3HGTXkdBwGddzxPlmiql5vlA==}
+ '@vitest/expect@4.1.11':
+ resolution: {integrity: sha512-VX2x5vNJXET47KAFzwERI+KRMtTTCSWTfSMKsW7JsUsXV4psq++e3DvZpuTDOpHcxytiDs6p2nhVb2tVDiiUYw==}
- '@vitest/mocker@4.1.10':
- resolution: {integrity: sha512-v0xaezt+DKEmKfaxg133ldzADrwLGd7Ze1MfQQTYfvs8OqZIwbxyxaYURivwV7sWy5fqn3rH5uOrSp07bp44Ow==}
+ '@vitest/mocker@4.1.11':
+ resolution: {integrity: sha512-2XJVD55d1o5AZous5CCGKS74g/riOj9odEt2bQpCVZeblHyHdnMeFl4jl0XjU21stf4mbjUkew2eXQZt65g5CQ==}
peerDependencies:
msw: ^2.4.9
vite: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -1783,28 +1705,28 @@ packages:
vite:
optional: true
- '@vitest/pretty-format@4.1.10':
- resolution: {integrity: sha512-W1HsjSH4MXQ9YfmmhLAoIYf1HRfekQCGngeIgcei6MP5QQGWUe0gkopdZQaVCFO+JDJMrAJGwa5pRpNpvy4P8Q==}
+ '@vitest/pretty-format@4.1.11':
+ resolution: {integrity: sha512-yiZzPbGTS9Sr/JpFl8zHrcIkAofNbFV6k21vIgQN/cY/oxZeXhJv5sc/MBJ5jFKWmWs+oJHw0UXLZjmf931+Vw==}
- '@vitest/runner@4.1.10':
- resolution: {integrity: sha512-IKI6kpIH+LmpROplyLwBBaCfMgOZOMsygVa6BARD6ahA04VRuJSa6OaVG7kRvSEMD870Vd91rSSw0eegtWyLGg==}
+ '@vitest/runner@4.1.11':
+ resolution: {integrity: sha512-LztvUgdwMNJMIkj3hQnnxiC2Xy1zNxq928W/xhjCLaNCzqTZOudjwbQf6v9IntZGPw132i2Lq2rgTRZHD3JHNw==}
- '@vitest/snapshot@4.1.10':
- resolution: {integrity: sha512-xRkfOT1qpTAi/Ti4Y1LtfRc3kEuqxGw59eN2jN9pRWMtS/XDevekhcFSqvQqjUNGksfjMJu3Y+oJ+4Ypn2OaJw==}
+ '@vitest/snapshot@4.1.11':
+ resolution: {integrity: sha512-pN7ikn1ON7h8ee4gIAp4AzyK+zBtJPzVbqOgu5LCEh4VaJVbPQcgYQYJIMGQPXVeJJq1fnfazis7a5pFNPahog==}
- '@vitest/spy@4.1.10':
- resolution: {integrity: sha512-PLf/Ugvoq5wO/b4rwYCR1h2PSIdXz7wnkQFMiUpLdtM7l6pqVFcQIBEHyT1+l+cj7mNwAfZHzqXqDyjvOuwbDw==}
+ '@vitest/spy@4.1.11':
+ resolution: {integrity: sha512-apNa/prQy2qCeywhnixOHPRCgGNhvg7T4Dapfl1GahLp/R+uhBm5cPyFoNVyqsNd2h1nJxL6BqqdIjiABL60YA==}
- '@vitest/utils@4.1.10':
- resolution: {integrity: sha512-fy9am/HWxbaGt/Sawrp90vt6Y6jQwf1RX77cz3uwoJwJVMli/e1IEwRPnMNJ7vKfPTwo0diXifkpPvwH9v7nGA==}
+ '@vitest/utils@4.1.11':
+ resolution: {integrity: sha512-zTCVGpyFsGWBhllOyKlTw/vnr6D9qxsfSDyfbyZmTyjHw5N/VuvzHpHoQjm2ZJzn4RJgx5w4r7V0er69CmLgPQ==}
- '@voidzero-dev/vite-plus-core@0.2.9':
- resolution: {integrity: sha512-dWqScAAwa8h/i9jCiGAMs7YarzQWInHZ5gCJNbQkHXA6Zp6A2T2anN9YMFVPpb7CwVFwkI2iPF5yl/DXtq+zUA==}
+ '@voidzero-dev/vite-plus-core@0.3.0':
+ resolution: {integrity: sha512-aOqoqIWaF+Q/geDU48pC2rVFEVSvLV1GGj/NdvhUiBhCZntoFNbwI+hjUeG8BMaPG67sOV6ey+/sgkdmGmKqaw==}
engines: {node: ^20.19.0 || ^22.18.0 || >=24.11.0}
peerDependencies:
'@arethetypeswrong/core': ^0.18.1
'@types/node': ^20.19.0 || >=22.12.0
- '@vitejs/devtools': ^0.4.0
+ '@vitejs/devtools': ^0.4.0 || ^0.5.0
esbuild: ^0.27.0 || ^0.28.0
jiti: '>=1.21.0'
less: ^4.0.0
@@ -1855,54 +1777,54 @@ packages:
yaml:
optional: true
- '@voidzero-dev/vite-plus-darwin-arm64@0.2.9':
- resolution: {integrity: sha512-/qJHqMfyy/LiCJk4UYZfFW6Comsfm8zDuy4P8UFWnFqRjmefYvZbMK4ThYNM87tKNWYWjsnClzssjJOmDTAc8w==}
+ '@voidzero-dev/vite-plus-darwin-arm64@0.3.0':
+ resolution: {integrity: sha512-9ADr1egZ8T4tJOqrpQLhoDl95Y74R95+bsvjmin0gy1C0eQVhpmcNnBfb07KFNhJioJp9MMO7F7Dx4fQL5SKsw==}
engines: {node: '>=20.0.0'}
cpu: [arm64]
os: [darwin]
- '@voidzero-dev/vite-plus-darwin-x64@0.2.9':
- resolution: {integrity: sha512-3MGnNeazgYAqQTaC7JIbZyrTHmxSXTWFr9G1yAdeItKasB1R8HKIkCS1Qnr49Ge4S/cyOODivdbcpqFkrT93ng==}
+ '@voidzero-dev/vite-plus-darwin-x64@0.3.0':
+ resolution: {integrity: sha512-GegasVCwNeDOkNyvhLOuwU1+T2JkjY/Tq+SOvwphUpVcqQ6OOAUq9LlpoXviO2QL/Kq2NbMYjiAfPKVSTLUFQw==}
engines: {node: '>=20.0.0'}
cpu: [x64]
os: [darwin]
- '@voidzero-dev/vite-plus-linux-arm64-gnu@0.2.9':
- resolution: {integrity: sha512-6LmukER8qD4UBIRqMNv4Ilq7CxfRhngLUXlMv8vbTupeLRWPJSKvKEHyRxCwr6JP57Gxfr8KrX1ye42WzcZF0g==}
+ '@voidzero-dev/vite-plus-linux-arm64-gnu@0.3.0':
+ resolution: {integrity: sha512-nYI3KNYXkXjRPsSdR4Lr7J2xMxfR1+TplWlG/dV37qVXWAjbyHpoAlbULjZBAVJMyXRNlcADhBrEwXe4g6s48A==}
engines: {node: '>=20.0.0'}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@voidzero-dev/vite-plus-linux-arm64-musl@0.2.9':
- resolution: {integrity: sha512-cBs626GWkyJlwKP0nsdHlMWpuTl9xOWRxAUoqtxXPtw80bVy4WM5eNS4SXPC5pX10jR7DRIkRpzNAsy7fv8Faw==}
+ '@voidzero-dev/vite-plus-linux-arm64-musl@0.3.0':
+ resolution: {integrity: sha512-HRlVA3AOcuGXmOdHhQ+Zv5XAaKbYF9si5rRHoOsKl0UyBo4txA3OoJfmP0WjanfLUNmu85JyO2dO1ptL4C6wgg==}
engines: {node: '>=20.0.0'}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@voidzero-dev/vite-plus-linux-x64-gnu@0.2.9':
- resolution: {integrity: sha512-2Iy8x4PCPMNzXeu3pREevlggoeK8PwtdUiCpoSybAZBtR/aqMxsJREyt/eKv45F8lsiNlA8PbIWEvPxLSgzFLQ==}
+ '@voidzero-dev/vite-plus-linux-x64-gnu@0.3.0':
+ resolution: {integrity: sha512-9A+dFScPfwcrzF/rRR0zH8++2hOf6xtFmN/5LyzyfUywtw9MILXcC72IMcOeL6QRJwKUMsudi1rFeDE59azNvw==}
engines: {node: '>=20.0.0'}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@voidzero-dev/vite-plus-linux-x64-musl@0.2.9':
- resolution: {integrity: sha512-zuGx+eRotWPd9cmh1X9AfsC2tN/Ad9Hk6LAzlxoKJUjEkTsY3WjVJ6Da0z48SAUFuenI0JkdqXnMCrePtGvWHg==}
+ '@voidzero-dev/vite-plus-linux-x64-musl@0.3.0':
+ resolution: {integrity: sha512-KfIV3qaPdaOOE8JQMRHRE34FtZocl9O86XLTP6JMjDUlcx8FPgf8/fz/HFqJ8g232vM+JsgLI/YTVeXP8LkTKw==}
engines: {node: '>=20.0.0'}
cpu: [x64]
os: [linux]
libc: [musl]
- '@voidzero-dev/vite-plus-win32-arm64-msvc@0.2.9':
- resolution: {integrity: sha512-kaKb5Q8ReYTBfvLgUhdpLJG3aoNF8HOVJpf8qBm+THsd4WRrkRwsBHp2ITsU8oXl2gnDjFGhPDaURegd/z6Wxw==}
+ '@voidzero-dev/vite-plus-win32-arm64-msvc@0.3.0':
+ resolution: {integrity: sha512-KRhdy5K13AYx9KBfCVHRrK7zSZU+bMW9CL6gTai+UkJgAmDJi1kjdSNboZOjO8mrzUnTCrELgMI2tnstcxSTuA==}
engines: {node: '>=20.0.0'}
cpu: [arm64]
os: [win32]
- '@voidzero-dev/vite-plus-win32-x64-msvc@0.2.9':
- resolution: {integrity: sha512-/fEk3gbQTJknCiYM/GTL/L++Azsav8rCAjmtKrjmCbqEif5IMzqTfvM68n+PiLB3JVoQJGF/mg2niODr0IE/2w==}
+ '@voidzero-dev/vite-plus-win32-x64-msvc@0.3.0':
+ resolution: {integrity: sha512-7+G+GxGmxdpQO0zjiGnkZFXKGqm0CrVduebRsJd6ccuOuxCQYPxLcoHq4WOaGrh56SrAGS7XjhnQCrXRkzKUVQ==}
engines: {node: '>=20.0.0'}
cpu: [x64]
os: [win32]
@@ -3603,8 +3525,8 @@ packages:
resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
engines: {node: '>=18'}
- oxfmt@0.62.0:
- resolution: {integrity: sha512-vxgGHTmnDU9j4CX7dDBLzxgmHxfda/yPcgJkGCMUSCwRmz+euo/V08xXLNgXTeqAB9Fhf3Pe2nO1RNKLCVgphQ==}
+ oxfmt@0.64.0:
+ resolution: {integrity: sha512-XZ4GFBN/PLbXKq+0zrgpQfPKYuJlUuj+nzZJY7UpIbFMNyefNLCdN9EwViycNqnYcv0wrn0jXcQLlqJp8RCKBg==}
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
peerDependencies:
@@ -3620,8 +3542,8 @@ packages:
resolution: {integrity: sha512-KjK/XLcXr1DSyonKhsuFqJRiuKqcyG9j3LJ8nkOsrLzGvodBPqzHOKauy10asLMDI0sUpvb+1sxlzff3udZvfg==}
hasBin: true
- oxlint@1.77.0:
- resolution: {integrity: sha512-qnGh8XJHaQ0dprrDXNQZgS0FgjI6v+V3+X8DwmaV++5Aamy6jGKfDdQ1TUvhUxtmKFAbEf4/WeO5QZX+5WSngg==}
+ oxlint@1.79.0:
+ resolution: {integrity: sha512-hVJ9hq9m2unPS+Of4eJJgCPdIeCC+3DHEUX3tkmrPJr3OK2hz7PhXwgC+ZP71ZcYu8cCDEtQrqLxWNvxBppBVg==}
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
peerDependencies:
@@ -3948,11 +3870,6 @@ packages:
resolution: {integrity: sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==}
engines: {node: '>=8.0'}
- rolldown@1.2.6:
- resolution: {integrity: sha512-vMM4q3aixf46GiF1Kok8jDPFsEpXgFWGjUHXNkNHNm+Y2adXAG2dbX91jkti3i0ZRsOlcmbuzAz1poObSHCmUA==}
- engines: {node: ^20.19.0 || >=22.12.0}
- hasBin: true
-
run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
@@ -4356,76 +4273,33 @@ packages:
vite-plugin-electron-renderer:
optional: true
- vite-plus@0.2.9:
- resolution: {integrity: sha512-8uRNqAxh9no3AU4Lep8BEYhkim07+3NO+mhuxTWiN0k30syGT/2+ue/DtWYhtzQ7yi2f2WKpjOhoI4/QkWWbUg==}
+ vite-plus@0.3.0:
+ resolution: {integrity: sha512-GNWbWuWD37frCSFrz6MLzUo62bTv5IOJozHEgZYOkxsLkuQtTwm4TowzpfoGrSsfwhAAtfPd/sK1Y0+v1SwhZA==}
engines: {node: ^20.19.0 || ^22.18.0 || >=24.11.0}
hasBin: true
peerDependencies:
- '@vitest/browser-playwright': 4.1.10
- '@vitest/browser-webdriverio': 4.1.10
+ '@vitest/browser-playwright': 4.1.11
+ '@vitest/browser-webdriverio': 4.1.11
peerDependenciesMeta:
'@vitest/browser-playwright':
optional: true
'@vitest/browser-webdriverio':
optional: true
- vite@8.2.2:
- resolution: {integrity: sha512-cFKLV/PRgAUlIRm5WjMjJ86jrftzpqcgH+Us+DS8mI3CDNiH30Whrz8uHL3+MOLPAgqbMBAqWdAHAphOAM+z/Q==}
- engines: {node: ^20.19.0 || >=22.12.0}
- hasBin: true
- peerDependencies:
- '@types/node': ^20.19.0 || >=22.12.0
- '@vitejs/devtools': ^0.4.0 || ^0.5.0
- esbuild: ^0.27.0 || ^0.28.0
- jiti: '>=1.21.0'
- less: ^4.0.0
- sass: ^1.70.0
- sass-embedded: ^1.70.0
- stylus: '>=0.54.8'
- sugarss: ^5.0.0
- terser: ^5.16.0
- tsx: ^4.8.1
- yaml: ^2.4.2
- peerDependenciesMeta:
- '@types/node':
- optional: true
- '@vitejs/devtools':
- optional: true
- esbuild:
- optional: true
- jiti:
- optional: true
- less:
- optional: true
- sass:
- optional: true
- sass-embedded:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
- tsx:
- optional: true
- yaml:
- optional: true
-
- vitest@4.1.10:
- resolution: {integrity: sha512-R9jUTe5S4Qb0HCd4TNqpC7oGcrMssMRGXLW80ubjWsW9VH5GF8y1Y0SFLY9AbqSk6nt0PnOx4H4WNJYZ13GUPw==}
+ vitest@4.1.11:
+ resolution: {integrity: sha512-fhACrNXUidIbGSBr5FlbuBkO7VWC1ZyLl0DO4CU2DrQoAPxX84Ysxs+HeGQpii5lZWV1Q4gBZTTu49mF+A6Edw==}
engines: {node: ^20.0.0 || ^22.0.0 || >=24.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
'@opentelemetry/api': ^1.9.0
'@types/node': ^20.0.0 || ^22.0.0 || >=24.0.0
- '@vitest/browser-playwright': 4.1.10
- '@vitest/browser-preview': 4.1.10
- '@vitest/browser-webdriverio': 4.1.10
- '@vitest/coverage-istanbul': 4.1.10
- '@vitest/coverage-v8': 4.1.10
- '@vitest/ui': 4.1.10
+ '@vitest/browser-playwright': 4.1.11
+ '@vitest/browser-preview': 4.1.11
+ '@vitest/browser-webdriverio': 4.1.11
+ '@vitest/coverage-istanbul': 4.1.11
+ '@vitest/coverage-v8': 4.1.11
+ '@vitest/ui': 4.1.11
happy-dom: '*'
jsdom: '*'
vite: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -5517,67 +5391,65 @@ snapshots:
'@oddbird/popover-polyfill@0.5.2': {}
- '@oxc-project/runtime@0.143.0': {}
-
- '@oxc-project/types@0.143.0': {}
+ '@oxc-project/runtime@0.146.0': {}
- '@oxc-project/types@0.147.0': {}
+ '@oxc-project/types@0.146.0': {}
- '@oxfmt/binding-android-arm-eabi@0.62.0':
+ '@oxfmt/binding-android-arm-eabi@0.64.0':
optional: true
- '@oxfmt/binding-android-arm64@0.62.0':
+ '@oxfmt/binding-android-arm64@0.64.0':
optional: true
- '@oxfmt/binding-darwin-arm64@0.62.0':
+ '@oxfmt/binding-darwin-arm64@0.64.0':
optional: true
- '@oxfmt/binding-darwin-x64@0.62.0':
+ '@oxfmt/binding-darwin-x64@0.64.0':
optional: true
- '@oxfmt/binding-freebsd-x64@0.62.0':
+ '@oxfmt/binding-freebsd-x64@0.64.0':
optional: true
- '@oxfmt/binding-linux-arm-gnueabihf@0.62.0':
+ '@oxfmt/binding-linux-arm-gnueabihf@0.64.0':
optional: true
- '@oxfmt/binding-linux-arm-musleabihf@0.62.0':
+ '@oxfmt/binding-linux-arm-musleabihf@0.64.0':
optional: true
- '@oxfmt/binding-linux-arm64-gnu@0.62.0':
+ '@oxfmt/binding-linux-arm64-gnu@0.64.0':
optional: true
- '@oxfmt/binding-linux-arm64-musl@0.62.0':
+ '@oxfmt/binding-linux-arm64-musl@0.64.0':
optional: true
- '@oxfmt/binding-linux-ppc64-gnu@0.62.0':
+ '@oxfmt/binding-linux-ppc64-gnu@0.64.0':
optional: true
- '@oxfmt/binding-linux-riscv64-gnu@0.62.0':
+ '@oxfmt/binding-linux-riscv64-gnu@0.64.0':
optional: true
- '@oxfmt/binding-linux-riscv64-musl@0.62.0':
+ '@oxfmt/binding-linux-riscv64-musl@0.64.0':
optional: true
- '@oxfmt/binding-linux-s390x-gnu@0.62.0':
+ '@oxfmt/binding-linux-s390x-gnu@0.64.0':
optional: true
- '@oxfmt/binding-linux-x64-gnu@0.62.0':
+ '@oxfmt/binding-linux-x64-gnu@0.64.0':
optional: true
- '@oxfmt/binding-linux-x64-musl@0.62.0':
+ '@oxfmt/binding-linux-x64-musl@0.64.0':
optional: true
- '@oxfmt/binding-openharmony-arm64@0.62.0':
+ '@oxfmt/binding-openharmony-arm64@0.64.0':
optional: true
- '@oxfmt/binding-win32-arm64-msvc@0.62.0':
+ '@oxfmt/binding-win32-arm64-msvc@0.64.0':
optional: true
- '@oxfmt/binding-win32-ia32-msvc@0.62.0':
+ '@oxfmt/binding-win32-ia32-msvc@0.64.0':
optional: true
- '@oxfmt/binding-win32-x64-msvc@0.62.0':
+ '@oxfmt/binding-win32-x64-msvc@0.64.0':
optional: true
'@oxlint-tsgolint/darwin-arm64@7.0.2001':
@@ -5598,64 +5470,64 @@ snapshots:
'@oxlint-tsgolint/win32-x64@7.0.2001':
optional: true
- '@oxlint/binding-android-arm-eabi@1.77.0':
+ '@oxlint/binding-android-arm-eabi@1.79.0':
optional: true
- '@oxlint/binding-android-arm64@1.77.0':
+ '@oxlint/binding-android-arm64@1.79.0':
optional: true
- '@oxlint/binding-darwin-arm64@1.77.0':
+ '@oxlint/binding-darwin-arm64@1.79.0':
optional: true
- '@oxlint/binding-darwin-x64@1.77.0':
+ '@oxlint/binding-darwin-x64@1.79.0':
optional: true
- '@oxlint/binding-freebsd-x64@1.77.0':
+ '@oxlint/binding-freebsd-x64@1.79.0':
optional: true
- '@oxlint/binding-linux-arm-gnueabihf@1.77.0':
+ '@oxlint/binding-linux-arm-gnueabihf@1.79.0':
optional: true
- '@oxlint/binding-linux-arm-musleabihf@1.77.0':
+ '@oxlint/binding-linux-arm-musleabihf@1.79.0':
optional: true
- '@oxlint/binding-linux-arm64-gnu@1.77.0':
+ '@oxlint/binding-linux-arm64-gnu@1.79.0':
optional: true
- '@oxlint/binding-linux-arm64-musl@1.77.0':
+ '@oxlint/binding-linux-arm64-musl@1.79.0':
optional: true
- '@oxlint/binding-linux-ppc64-gnu@1.77.0':
+ '@oxlint/binding-linux-ppc64-gnu@1.79.0':
optional: true
- '@oxlint/binding-linux-riscv64-gnu@1.77.0':
+ '@oxlint/binding-linux-riscv64-gnu@1.79.0':
optional: true
- '@oxlint/binding-linux-riscv64-musl@1.77.0':
+ '@oxlint/binding-linux-riscv64-musl@1.79.0':
optional: true
- '@oxlint/binding-linux-s390x-gnu@1.77.0':
+ '@oxlint/binding-linux-s390x-gnu@1.79.0':
optional: true
- '@oxlint/binding-linux-x64-gnu@1.77.0':
+ '@oxlint/binding-linux-x64-gnu@1.79.0':
optional: true
- '@oxlint/binding-linux-x64-musl@1.77.0':
+ '@oxlint/binding-linux-x64-musl@1.79.0':
optional: true
- '@oxlint/binding-openharmony-arm64@1.77.0':
+ '@oxlint/binding-openharmony-arm64@1.79.0':
optional: true
- '@oxlint/binding-win32-arm64-msvc@1.77.0':
+ '@oxlint/binding-win32-arm64-msvc@1.79.0':
optional: true
- '@oxlint/binding-win32-ia32-msvc@1.77.0':
+ '@oxlint/binding-win32-ia32-msvc@1.79.0':
optional: true
- '@oxlint/binding-win32-x64-msvc@1.77.0':
+ '@oxlint/binding-win32-x64-msvc@1.79.0':
optional: true
- '@oxlint/plugins@1.73.0': {}
+ '@oxlint/plugins@1.79.0': {}
'@parcel/watcher-android-arm64@2.6.0':
optional: true
@@ -5783,51 +5655,6 @@ snapshots:
'@repeaterjs/repeater@3.1.0': {}
- '@rolldown/binding-android-arm-eabi@1.2.6':
- optional: true
-
- '@rolldown/binding-android-arm64@1.2.6':
- optional: true
-
- '@rolldown/binding-darwin-arm64@1.2.6':
- optional: true
-
- '@rolldown/binding-darwin-x64@1.2.6':
- optional: true
-
- '@rolldown/binding-freebsd-x64@1.2.6':
- optional: true
-
- '@rolldown/binding-linux-arm-gnueabihf@1.2.6':
- optional: true
-
- '@rolldown/binding-linux-arm64-gnu@1.2.6':
- optional: true
-
- '@rolldown/binding-linux-arm64-musl@1.2.6':
- optional: true
-
- '@rolldown/binding-linux-ppc64-gnu@1.2.6':
- optional: true
-
- '@rolldown/binding-linux-s390x-gnu@1.2.6':
- optional: true
-
- '@rolldown/binding-linux-x64-gnu@1.2.6':
- optional: true
-
- '@rolldown/binding-linux-x64-musl@1.2.6':
- optional: true
-
- '@rolldown/binding-openharmony-arm64@1.2.6':
- optional: true
-
- '@rolldown/binding-win32-arm64-msvc@1.2.6':
- optional: true
-
- '@rolldown/binding-win32-x64-msvc@1.2.6':
- optional: true
-
'@rolldown/pluginutils@1.0.1': {}
'@sindresorhus/is@4.6.0': {}
@@ -5899,12 +5726,12 @@ snapshots:
'@tailwindcss/oxide-win32-arm64-msvc': 4.3.3
'@tailwindcss/oxide-win32-x64-msvc': 4.3.3
- '@tailwindcss/vite@4.3.3(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))':
+ '@tailwindcss/vite@4.3.3(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))':
dependencies:
'@tailwindcss/node': 4.3.3
'@tailwindcss/oxide': 4.3.3
tailwindcss: 4.3.3
- vite: 8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0)
+ vite: '@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0)'
'@tanstack/query-core@5.102.8': {}
@@ -5932,7 +5759,7 @@ snapshots:
picocolors: 1.1.1
pretty-format: 27.5.1
- '@testing-library/jest-dom@7.0.1(@testing-library/dom@10.4.1)(vitest@4.1.10)':
+ '@testing-library/jest-dom@7.0.1(@testing-library/dom@10.4.1)(vitest@4.1.11)':
dependencies:
'@adobe/css-tools': 4.5.0
'@testing-library/dom': 10.4.1
@@ -5942,7 +5769,7 @@ snapshots:
picocolors: 1.1.1
redent: 3.0.0
optionalDependencies:
- vitest: 4.1.10(@types/node@24.13.3)(@vitest/browser-playwright@4.1.10)(@vitest/browser-preview@4.1.10)(@vitest/coverage-v8@4.1.10)(happy-dom@20.11.12)(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))
+ vitest: 4.1.11(@types/node@24.13.3)(@vitest/browser-playwright@4.1.11)(@vitest/browser-preview@4.1.11)(@vitest/coverage-v8@4.1.11)(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(happy-dom@20.11.12)
'@testing-library/react@16.3.3(@testing-library/dom@10.4.1)(@types/react-dom@19.2.5(@types/react@19.2.18))(@types/react@19.2.18)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)':
dependencies:
@@ -6091,46 +5918,46 @@ snapshots:
'@typescript/typescript-win32-x64@7.0.2':
optional: true
- '@vitejs/plugin-react@6.1.0(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))':
+ '@vitejs/plugin-react@6.1.0(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))':
dependencies:
'@rolldown/pluginutils': 1.0.1
- vite: 8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0)
+ vite: '@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0)'
- '@vitest/browser-playwright@4.1.10(playwright@1.62.1)(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))(vitest@4.1.10)':
+ '@vitest/browser-playwright@4.1.11(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(playwright@1.62.1)(vitest@4.1.11)':
dependencies:
- '@vitest/browser': 4.1.10(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))(vitest@4.1.10)
- '@vitest/mocker': 4.1.10(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))
+ '@vitest/browser': 4.1.11(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(vitest@4.1.11)
+ '@vitest/mocker': 4.1.11(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))
playwright: 1.62.1
tinyrainbow: 3.1.1
- vitest: 4.1.10(@types/node@24.13.3)(@vitest/browser-playwright@4.1.10)(@vitest/browser-preview@4.1.10)(@vitest/coverage-v8@4.1.10)(happy-dom@20.11.12)(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))
+ vitest: 4.1.11(@types/node@24.13.3)(@vitest/browser-playwright@4.1.11)(@vitest/browser-preview@4.1.11)(@vitest/coverage-v8@4.1.11)(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(happy-dom@20.11.12)
transitivePeerDependencies:
- bufferutil
- msw
- utf-8-validate
- vite
- '@vitest/browser-preview@4.1.10(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))(vitest@4.1.10)':
+ '@vitest/browser-preview@4.1.11(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(vitest@4.1.11)':
dependencies:
'@testing-library/dom': 10.4.1
'@testing-library/user-event': 14.6.6(@testing-library/dom@10.4.1)
- '@vitest/browser': 4.1.10(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))(vitest@4.1.10)
- vitest: 4.1.10(@types/node@24.13.3)(@vitest/browser-playwright@4.1.10)(@vitest/browser-preview@4.1.10)(@vitest/coverage-v8@4.1.10)(happy-dom@20.11.12)(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))
+ '@vitest/browser': 4.1.11(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(vitest@4.1.11)
+ vitest: 4.1.11(@types/node@24.13.3)(@vitest/browser-playwright@4.1.11)(@vitest/browser-preview@4.1.11)(@vitest/coverage-v8@4.1.11)(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(happy-dom@20.11.12)
transitivePeerDependencies:
- bufferutil
- msw
- utf-8-validate
- vite
- '@vitest/browser@4.1.10(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))(vitest@4.1.10)':
+ '@vitest/browser@4.1.11(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(vitest@4.1.11)':
dependencies:
'@blazediff/core': 1.9.1
- '@vitest/mocker': 4.1.10(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))
- '@vitest/utils': 4.1.10
+ '@vitest/mocker': 4.1.11(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))
+ '@vitest/utils': 4.1.11
magic-string: 0.30.21
pngjs: 7.0.0
sirv: 3.0.2
tinyrainbow: 3.1.1
- vitest: 4.1.10(@types/node@24.13.3)(@vitest/browser-playwright@4.1.10)(@vitest/browser-preview@4.1.10)(@vitest/coverage-v8@4.1.10)(happy-dom@20.11.12)(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))
+ vitest: 4.1.11(@types/node@24.13.3)(@vitest/browser-playwright@4.1.11)(@vitest/browser-preview@4.1.11)(@vitest/coverage-v8@4.1.11)(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(happy-dom@20.11.12)
ws: 8.21.3
transitivePeerDependencies:
- bufferutil
@@ -6138,10 +5965,10 @@ snapshots:
- utf-8-validate
- vite
- '@vitest/coverage-v8@4.1.10(@vitest/browser@4.1.10)(vitest@4.1.10)':
+ '@vitest/coverage-v8@4.1.11(@vitest/browser@4.1.11)(vitest@4.1.11)':
dependencies:
'@bcoe/v8-coverage': 1.0.2
- '@vitest/utils': 4.1.10
+ '@vitest/utils': 4.1.11
ast-v8-to-istanbul: 1.0.5
istanbul-lib-coverage: 3.2.2
istanbul-lib-report: 3.0.1
@@ -6150,96 +5977,96 @@ snapshots:
obug: 2.1.4
std-env: 4.2.0
tinyrainbow: 3.1.1
- vitest: 4.1.10(@types/node@24.13.3)(@vitest/browser-playwright@4.1.10)(@vitest/browser-preview@4.1.10)(@vitest/coverage-v8@4.1.10)(happy-dom@20.11.12)(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))
+ vitest: 4.1.11(@types/node@24.13.3)(@vitest/browser-playwright@4.1.11)(@vitest/browser-preview@4.1.11)(@vitest/coverage-v8@4.1.11)(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(happy-dom@20.11.12)
optionalDependencies:
- '@vitest/browser': 4.1.10(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))(vitest@4.1.10)
+ '@vitest/browser': 4.1.11(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(vitest@4.1.11)
- '@vitest/expect@4.1.10':
+ '@vitest/expect@4.1.11':
dependencies:
'@standard-schema/spec': 1.1.0
'@types/chai': 5.2.3
- '@vitest/spy': 4.1.10
- '@vitest/utils': 4.1.10
+ '@vitest/spy': 4.1.11
+ '@vitest/utils': 4.1.11
chai: 6.2.2
tinyrainbow: 3.1.1
- '@vitest/mocker@4.1.10(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))':
+ '@vitest/mocker@4.1.11(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))':
dependencies:
- '@vitest/spy': 4.1.10
+ '@vitest/spy': 4.1.11
estree-walker: 3.0.3
magic-string: 0.30.21
optionalDependencies:
- vite: 8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0)
+ vite: '@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0)'
- '@vitest/pretty-format@4.1.10':
+ '@vitest/pretty-format@4.1.11':
dependencies:
tinyrainbow: 3.1.1
- '@vitest/runner@4.1.10':
+ '@vitest/runner@4.1.11':
dependencies:
- '@vitest/utils': 4.1.10
+ '@vitest/utils': 4.1.11
pathe: 2.0.3
- '@vitest/snapshot@4.1.10':
+ '@vitest/snapshot@4.1.11':
dependencies:
- '@vitest/pretty-format': 4.1.10
- '@vitest/utils': 4.1.10
+ '@vitest/pretty-format': 4.1.11
+ '@vitest/utils': 4.1.11
magic-string: 0.30.21
pathe: 2.0.3
- '@vitest/spy@4.1.10': {}
+ '@vitest/spy@4.1.11': {}
- '@vitest/utils@4.1.10':
+ '@vitest/utils@4.1.11':
dependencies:
- '@vitest/pretty-format': 4.1.10
+ '@vitest/pretty-format': 4.1.11
convert-source-map: 2.0.0
tinyrainbow: 3.1.1
- '@voidzero-dev/vite-plus-core@0.2.9(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0)':
+ '@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0)':
dependencies:
- '@oxc-project/runtime': 0.143.0
- '@oxc-project/types': 0.143.0
+ '@oxc-project/runtime': 0.146.0
+ '@oxc-project/types': 0.146.0
lightningcss: 1.33.0
postcss: 8.5.26
yuku-codegen: 0.5.48
yuku-parser: 0.5.48
optionalDependencies:
'@types/node': 24.13.3
- '@voidzero-dev/vite-plus-darwin-arm64': 0.2.9
- '@voidzero-dev/vite-plus-darwin-x64': 0.2.9
- '@voidzero-dev/vite-plus-linux-arm64-gnu': 0.2.9
- '@voidzero-dev/vite-plus-linux-arm64-musl': 0.2.9
- '@voidzero-dev/vite-plus-linux-x64-gnu': 0.2.9
- '@voidzero-dev/vite-plus-linux-x64-musl': 0.2.9
- '@voidzero-dev/vite-plus-win32-arm64-msvc': 0.2.9
- '@voidzero-dev/vite-plus-win32-x64-msvc': 0.2.9
+ '@voidzero-dev/vite-plus-darwin-arm64': 0.3.0
+ '@voidzero-dev/vite-plus-darwin-x64': 0.3.0
+ '@voidzero-dev/vite-plus-linux-arm64-gnu': 0.3.0
+ '@voidzero-dev/vite-plus-linux-arm64-musl': 0.3.0
+ '@voidzero-dev/vite-plus-linux-x64-gnu': 0.3.0
+ '@voidzero-dev/vite-plus-linux-x64-musl': 0.3.0
+ '@voidzero-dev/vite-plus-win32-arm64-msvc': 0.3.0
+ '@voidzero-dev/vite-plus-win32-x64-msvc': 0.3.0
fsevents: 2.3.3
jiti: 2.7.0
typescript: 7.0.2
yaml: 2.9.0
- '@voidzero-dev/vite-plus-darwin-arm64@0.2.9':
+ '@voidzero-dev/vite-plus-darwin-arm64@0.3.0':
optional: true
- '@voidzero-dev/vite-plus-darwin-x64@0.2.9':
+ '@voidzero-dev/vite-plus-darwin-x64@0.3.0':
optional: true
- '@voidzero-dev/vite-plus-linux-arm64-gnu@0.2.9':
+ '@voidzero-dev/vite-plus-linux-arm64-gnu@0.3.0':
optional: true
- '@voidzero-dev/vite-plus-linux-arm64-musl@0.2.9':
+ '@voidzero-dev/vite-plus-linux-arm64-musl@0.3.0':
optional: true
- '@voidzero-dev/vite-plus-linux-x64-gnu@0.2.9':
+ '@voidzero-dev/vite-plus-linux-x64-gnu@0.3.0':
optional: true
- '@voidzero-dev/vite-plus-linux-x64-musl@0.2.9':
+ '@voidzero-dev/vite-plus-linux-x64-musl@0.3.0':
optional: true
- '@voidzero-dev/vite-plus-win32-arm64-msvc@0.2.9':
+ '@voidzero-dev/vite-plus-win32-arm64-msvc@0.3.0':
optional: true
- '@voidzero-dev/vite-plus-win32-x64-msvc@0.2.9':
+ '@voidzero-dev/vite-plus-win32-x64-msvc@0.3.0':
optional: true
'@whatwg-node/disposablestack@0.0.6':
@@ -7845,30 +7672,30 @@ snapshots:
dependencies:
mimic-function: 5.0.1
- oxfmt@0.62.0(vite-plus@0.2.9(@types/node@24.13.3)(@vitest/browser-playwright@4.1.10)(@vitest/coverage-v8@4.1.10)(happy-dom@20.11.12)(jiti@2.7.0)(typescript@7.0.2)(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))(yaml@2.9.0)):
+ oxfmt@0.64.0(vite-plus@0.3.0(@types/node@24.13.3)(@vitest/browser-playwright@4.1.11)(@vitest/coverage-v8@4.1.11)(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(happy-dom@20.11.12)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0)):
dependencies:
tinypool: 2.1.0
optionalDependencies:
- '@oxfmt/binding-android-arm-eabi': 0.62.0
- '@oxfmt/binding-android-arm64': 0.62.0
- '@oxfmt/binding-darwin-arm64': 0.62.0
- '@oxfmt/binding-darwin-x64': 0.62.0
- '@oxfmt/binding-freebsd-x64': 0.62.0
- '@oxfmt/binding-linux-arm-gnueabihf': 0.62.0
- '@oxfmt/binding-linux-arm-musleabihf': 0.62.0
- '@oxfmt/binding-linux-arm64-gnu': 0.62.0
- '@oxfmt/binding-linux-arm64-musl': 0.62.0
- '@oxfmt/binding-linux-ppc64-gnu': 0.62.0
- '@oxfmt/binding-linux-riscv64-gnu': 0.62.0
- '@oxfmt/binding-linux-riscv64-musl': 0.62.0
- '@oxfmt/binding-linux-s390x-gnu': 0.62.0
- '@oxfmt/binding-linux-x64-gnu': 0.62.0
- '@oxfmt/binding-linux-x64-musl': 0.62.0
- '@oxfmt/binding-openharmony-arm64': 0.62.0
- '@oxfmt/binding-win32-arm64-msvc': 0.62.0
- '@oxfmt/binding-win32-ia32-msvc': 0.62.0
- '@oxfmt/binding-win32-x64-msvc': 0.62.0
- vite-plus: 0.2.9(@types/node@24.13.3)(@vitest/browser-playwright@4.1.10)(@vitest/coverage-v8@4.1.10)(happy-dom@20.11.12)(jiti@2.7.0)(typescript@7.0.2)(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))(yaml@2.9.0)
+ '@oxfmt/binding-android-arm-eabi': 0.64.0
+ '@oxfmt/binding-android-arm64': 0.64.0
+ '@oxfmt/binding-darwin-arm64': 0.64.0
+ '@oxfmt/binding-darwin-x64': 0.64.0
+ '@oxfmt/binding-freebsd-x64': 0.64.0
+ '@oxfmt/binding-linux-arm-gnueabihf': 0.64.0
+ '@oxfmt/binding-linux-arm-musleabihf': 0.64.0
+ '@oxfmt/binding-linux-arm64-gnu': 0.64.0
+ '@oxfmt/binding-linux-arm64-musl': 0.64.0
+ '@oxfmt/binding-linux-ppc64-gnu': 0.64.0
+ '@oxfmt/binding-linux-riscv64-gnu': 0.64.0
+ '@oxfmt/binding-linux-riscv64-musl': 0.64.0
+ '@oxfmt/binding-linux-s390x-gnu': 0.64.0
+ '@oxfmt/binding-linux-x64-gnu': 0.64.0
+ '@oxfmt/binding-linux-x64-musl': 0.64.0
+ '@oxfmt/binding-openharmony-arm64': 0.64.0
+ '@oxfmt/binding-win32-arm64-msvc': 0.64.0
+ '@oxfmt/binding-win32-ia32-msvc': 0.64.0
+ '@oxfmt/binding-win32-x64-msvc': 0.64.0
+ vite-plus: 0.3.0(@types/node@24.13.3)(@vitest/browser-playwright@4.1.11)(@vitest/coverage-v8@4.1.11)(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(happy-dom@20.11.12)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0)
oxlint-tsgolint@7.0.2001:
optionalDependencies:
@@ -7879,29 +7706,29 @@ snapshots:
'@oxlint-tsgolint/win32-arm64': 7.0.2001
'@oxlint-tsgolint/win32-x64': 7.0.2001
- oxlint@1.77.0(oxlint-tsgolint@7.0.2001)(vite-plus@0.2.9(@types/node@24.13.3)(@vitest/browser-playwright@4.1.10)(@vitest/coverage-v8@4.1.10)(happy-dom@20.11.12)(jiti@2.7.0)(typescript@7.0.2)(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))(yaml@2.9.0)):
+ oxlint@1.79.0(oxlint-tsgolint@7.0.2001)(vite-plus@0.3.0(@types/node@24.13.3)(@vitest/browser-playwright@4.1.11)(@vitest/coverage-v8@4.1.11)(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(happy-dom@20.11.12)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0)):
optionalDependencies:
- '@oxlint/binding-android-arm-eabi': 1.77.0
- '@oxlint/binding-android-arm64': 1.77.0
- '@oxlint/binding-darwin-arm64': 1.77.0
- '@oxlint/binding-darwin-x64': 1.77.0
- '@oxlint/binding-freebsd-x64': 1.77.0
- '@oxlint/binding-linux-arm-gnueabihf': 1.77.0
- '@oxlint/binding-linux-arm-musleabihf': 1.77.0
- '@oxlint/binding-linux-arm64-gnu': 1.77.0
- '@oxlint/binding-linux-arm64-musl': 1.77.0
- '@oxlint/binding-linux-ppc64-gnu': 1.77.0
- '@oxlint/binding-linux-riscv64-gnu': 1.77.0
- '@oxlint/binding-linux-riscv64-musl': 1.77.0
- '@oxlint/binding-linux-s390x-gnu': 1.77.0
- '@oxlint/binding-linux-x64-gnu': 1.77.0
- '@oxlint/binding-linux-x64-musl': 1.77.0
- '@oxlint/binding-openharmony-arm64': 1.77.0
- '@oxlint/binding-win32-arm64-msvc': 1.77.0
- '@oxlint/binding-win32-ia32-msvc': 1.77.0
- '@oxlint/binding-win32-x64-msvc': 1.77.0
+ '@oxlint/binding-android-arm-eabi': 1.79.0
+ '@oxlint/binding-android-arm64': 1.79.0
+ '@oxlint/binding-darwin-arm64': 1.79.0
+ '@oxlint/binding-darwin-x64': 1.79.0
+ '@oxlint/binding-freebsd-x64': 1.79.0
+ '@oxlint/binding-linux-arm-gnueabihf': 1.79.0
+ '@oxlint/binding-linux-arm-musleabihf': 1.79.0
+ '@oxlint/binding-linux-arm64-gnu': 1.79.0
+ '@oxlint/binding-linux-arm64-musl': 1.79.0
+ '@oxlint/binding-linux-ppc64-gnu': 1.79.0
+ '@oxlint/binding-linux-riscv64-gnu': 1.79.0
+ '@oxlint/binding-linux-riscv64-musl': 1.79.0
+ '@oxlint/binding-linux-s390x-gnu': 1.79.0
+ '@oxlint/binding-linux-x64-gnu': 1.79.0
+ '@oxlint/binding-linux-x64-musl': 1.79.0
+ '@oxlint/binding-openharmony-arm64': 1.79.0
+ '@oxlint/binding-win32-arm64-msvc': 1.79.0
+ '@oxlint/binding-win32-ia32-msvc': 1.79.0
+ '@oxlint/binding-win32-x64-msvc': 1.79.0
oxlint-tsgolint: 7.0.2001
- vite-plus: 0.2.9(@types/node@24.13.3)(@vitest/browser-playwright@4.1.10)(@vitest/coverage-v8@4.1.10)(happy-dom@20.11.12)(jiti@2.7.0)(typescript@7.0.2)(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))(yaml@2.9.0)
+ vite-plus: 0.3.0(@types/node@24.13.3)(@vitest/browser-playwright@4.1.11)(@vitest/coverage-v8@4.1.11)(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(happy-dom@20.11.12)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0)
p-cancelable@2.1.1: {}
@@ -8215,27 +8042,6 @@ snapshots:
sprintf-js: 1.1.3
optional: true
- rolldown@1.2.6:
- dependencies:
- '@oxc-project/types': 0.147.0
- '@rolldown/pluginutils': 1.0.1
- optionalDependencies:
- '@rolldown/binding-android-arm-eabi': 1.2.6
- '@rolldown/binding-android-arm64': 1.2.6
- '@rolldown/binding-darwin-arm64': 1.2.6
- '@rolldown/binding-darwin-x64': 1.2.6
- '@rolldown/binding-freebsd-x64': 1.2.6
- '@rolldown/binding-linux-arm-gnueabihf': 1.2.6
- '@rolldown/binding-linux-arm64-gnu': 1.2.6
- '@rolldown/binding-linux-arm64-musl': 1.2.6
- '@rolldown/binding-linux-ppc64-gnu': 1.2.6
- '@rolldown/binding-linux-s390x-gnu': 1.2.6
- '@rolldown/binding-linux-x64-gnu': 1.2.6
- '@rolldown/binding-linux-x64-musl': 1.2.6
- '@rolldown/binding-openharmony-arm64': 1.2.6
- '@rolldown/binding-win32-arm64-msvc': 1.2.6
- '@rolldown/binding-win32-x64-msvc': 1.2.6
-
run-parallel@1.2.0:
dependencies:
queue-microtask: 1.2.3
@@ -8575,7 +8381,7 @@ snapshots:
util-deprecate@1.0.2: {}
- vite-plugin-checker@0.14.5(oxlint@1.77.0(oxlint-tsgolint@7.0.2001)(vite-plus@0.2.9(@types/node@24.13.3)(@vitest/browser-playwright@4.1.10)(@vitest/coverage-v8@4.1.10)(happy-dom@20.11.12)(jiti@2.7.0)(typescript@7.0.2)(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))(yaml@2.9.0)))(typescript@7.0.2)(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0)):
+ vite-plugin-checker@0.14.5(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(oxlint@1.79.0(oxlint-tsgolint@7.0.2001)(vite-plus@0.3.0(@types/node@24.13.3)(@vitest/browser-playwright@4.1.11)(@vitest/coverage-v8@4.1.11)(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(happy-dom@20.11.12)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0)))(typescript@7.0.2):
dependencies:
'@babel/code-frame': 7.29.7
chokidar: 5.0.0
@@ -8584,43 +8390,43 @@ snapshots:
picomatch: 4.0.7
proper-lockfile: 4.1.2
tiny-invariant: 1.3.3
- vite: 8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0)
+ vite: '@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0)'
optionalDependencies:
- oxlint: 1.77.0(oxlint-tsgolint@7.0.2001)(vite-plus@0.2.9(@types/node@24.13.3)(@vitest/browser-playwright@4.1.10)(@vitest/coverage-v8@4.1.10)(happy-dom@20.11.12)(jiti@2.7.0)(typescript@7.0.2)(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))(yaml@2.9.0))
+ oxlint: 1.79.0(oxlint-tsgolint@7.0.2001)(vite-plus@0.3.0(@types/node@24.13.3)(@vitest/browser-playwright@4.1.11)(@vitest/coverage-v8@4.1.11)(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(happy-dom@20.11.12)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))
typescript: 7.0.2
vite-plugin-electron@1.1.1:
dependencies:
local-pkg: 1.2.1
- vite-plus@0.2.9(@types/node@24.13.3)(@vitest/browser-playwright@4.1.10)(@vitest/coverage-v8@4.1.10)(happy-dom@20.11.12)(jiti@2.7.0)(typescript@7.0.2)(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))(yaml@2.9.0):
- dependencies:
- '@oxc-project/types': 0.143.0
- '@oxlint/plugins': 1.73.0
- '@vitest/browser': 4.1.10(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))(vitest@4.1.10)
- '@vitest/browser-preview': 4.1.10(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))(vitest@4.1.10)
- '@vitest/expect': 4.1.10
- '@vitest/mocker': 4.1.10(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))
- '@vitest/pretty-format': 4.1.10
- '@vitest/runner': 4.1.10
- '@vitest/snapshot': 4.1.10
- '@vitest/spy': 4.1.10
- '@vitest/utils': 4.1.10
- '@voidzero-dev/vite-plus-core': 0.2.9(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0)
- oxfmt: 0.62.0(vite-plus@0.2.9(@types/node@24.13.3)(@vitest/browser-playwright@4.1.10)(@vitest/coverage-v8@4.1.10)(happy-dom@20.11.12)(jiti@2.7.0)(typescript@7.0.2)(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))(yaml@2.9.0))
- oxlint: 1.77.0(oxlint-tsgolint@7.0.2001)(vite-plus@0.2.9(@types/node@24.13.3)(@vitest/browser-playwright@4.1.10)(@vitest/coverage-v8@4.1.10)(happy-dom@20.11.12)(jiti@2.7.0)(typescript@7.0.2)(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))(yaml@2.9.0))
+ vite-plus@0.3.0(@types/node@24.13.3)(@vitest/browser-playwright@4.1.11)(@vitest/coverage-v8@4.1.11)(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(happy-dom@20.11.12)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0):
+ dependencies:
+ '@oxc-project/types': 0.146.0
+ '@oxlint/plugins': 1.79.0
+ '@vitest/browser': 4.1.11(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(vitest@4.1.11)
+ '@vitest/browser-preview': 4.1.11(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(vitest@4.1.11)
+ '@vitest/expect': 4.1.11
+ '@vitest/mocker': 4.1.11(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))
+ '@vitest/pretty-format': 4.1.11
+ '@vitest/runner': 4.1.11
+ '@vitest/snapshot': 4.1.11
+ '@vitest/spy': 4.1.11
+ '@vitest/utils': 4.1.11
+ '@voidzero-dev/vite-plus-core': 0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0)
+ oxfmt: 0.64.0(vite-plus@0.3.0(@types/node@24.13.3)(@vitest/browser-playwright@4.1.11)(@vitest/coverage-v8@4.1.11)(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(happy-dom@20.11.12)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))
+ oxlint: 1.79.0(oxlint-tsgolint@7.0.2001)(vite-plus@0.3.0(@types/node@24.13.3)(@vitest/browser-playwright@4.1.11)(@vitest/coverage-v8@4.1.11)(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(happy-dom@20.11.12)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))
oxlint-tsgolint: 7.0.2001
- vitest: 4.1.10(@types/node@24.13.3)(@vitest/browser-playwright@4.1.10)(@vitest/browser-preview@4.1.10)(@vitest/coverage-v8@4.1.10)(happy-dom@20.11.12)(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))
+ vitest: 4.1.11(@types/node@24.13.3)(@vitest/browser-playwright@4.1.11)(@vitest/browser-preview@4.1.11)(@vitest/coverage-v8@4.1.11)(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(happy-dom@20.11.12)
optionalDependencies:
- '@vitest/browser-playwright': 4.1.10(playwright@1.62.1)(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))(vitest@4.1.10)
- '@voidzero-dev/vite-plus-darwin-arm64': 0.2.9
- '@voidzero-dev/vite-plus-darwin-x64': 0.2.9
- '@voidzero-dev/vite-plus-linux-arm64-gnu': 0.2.9
- '@voidzero-dev/vite-plus-linux-arm64-musl': 0.2.9
- '@voidzero-dev/vite-plus-linux-x64-gnu': 0.2.9
- '@voidzero-dev/vite-plus-linux-x64-musl': 0.2.9
- '@voidzero-dev/vite-plus-win32-arm64-msvc': 0.2.9
- '@voidzero-dev/vite-plus-win32-x64-msvc': 0.2.9
+ '@vitest/browser-playwright': 4.1.11(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(playwright@1.62.1)(vitest@4.1.11)
+ '@voidzero-dev/vite-plus-darwin-arm64': 0.3.0
+ '@voidzero-dev/vite-plus-darwin-x64': 0.3.0
+ '@voidzero-dev/vite-plus-linux-arm64-gnu': 0.3.0
+ '@voidzero-dev/vite-plus-linux-arm64-musl': 0.3.0
+ '@voidzero-dev/vite-plus-linux-x64-gnu': 0.3.0
+ '@voidzero-dev/vite-plus-linux-x64-musl': 0.3.0
+ '@voidzero-dev/vite-plus-win32-arm64-msvc': 0.3.0
+ '@voidzero-dev/vite-plus-win32-x64-msvc': 0.3.0
transitivePeerDependencies:
- '@arethetypeswrong/core'
- '@edge-runtime/vm'
@@ -8652,28 +8458,15 @@ snapshots:
- vite
- yaml
- vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0):
- dependencies:
- lightningcss: 1.33.0
- picomatch: 4.0.7
- postcss: 8.5.26
- rolldown: 1.2.6
- tinyglobby: 0.2.17
- optionalDependencies:
- '@types/node': 24.13.3
- fsevents: 2.3.3
- jiti: 2.7.0
- yaml: 2.9.0
-
- vitest@4.1.10(@types/node@24.13.3)(@vitest/browser-playwright@4.1.10)(@vitest/browser-preview@4.1.10)(@vitest/coverage-v8@4.1.10)(happy-dom@20.11.12)(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0)):
+ vitest@4.1.11(@types/node@24.13.3)(@vitest/browser-playwright@4.1.11)(@vitest/browser-preview@4.1.11)(@vitest/coverage-v8@4.1.11)(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(happy-dom@20.11.12):
dependencies:
- '@vitest/expect': 4.1.10
- '@vitest/mocker': 4.1.10(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))
- '@vitest/pretty-format': 4.1.10
- '@vitest/runner': 4.1.10
- '@vitest/snapshot': 4.1.10
- '@vitest/spy': 4.1.10
- '@vitest/utils': 4.1.10
+ '@vitest/expect': 4.1.11
+ '@vitest/mocker': 4.1.11(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))
+ '@vitest/pretty-format': 4.1.11
+ '@vitest/runner': 4.1.11
+ '@vitest/snapshot': 4.1.11
+ '@vitest/spy': 4.1.11
+ '@vitest/utils': 4.1.11
es-module-lexer: 2.3.2
expect-type: 1.4.0
magic-string: 0.30.21
@@ -8685,13 +8478,13 @@ snapshots:
tinyexec: 1.3.0
tinyglobby: 0.2.17
tinyrainbow: 3.1.1
- vite: 8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0)
+ vite: '@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0)'
why-is-node-running: 2.3.0
optionalDependencies:
'@types/node': 24.13.3
- '@vitest/browser-playwright': 4.1.10(playwright@1.62.1)(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))(vitest@4.1.10)
- '@vitest/browser-preview': 4.1.10(vite@8.2.2(@types/node@24.13.3)(jiti@2.7.0)(yaml@2.9.0))(vitest@4.1.10)
- '@vitest/coverage-v8': 4.1.10(@vitest/browser@4.1.10)(vitest@4.1.10)
+ '@vitest/browser-playwright': 4.1.11(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(playwright@1.62.1)(vitest@4.1.11)
+ '@vitest/browser-preview': 4.1.11(@voidzero-dev/vite-plus-core@0.3.0(@types/node@24.13.3)(jiti@2.7.0)(typescript@7.0.2)(yaml@2.9.0))(vitest@4.1.11)
+ '@vitest/coverage-v8': 4.1.11(@vitest/browser@4.1.11)(vitest@4.1.11)
happy-dom: 20.11.12
transitivePeerDependencies:
- msw
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index 9a2bcbb3a..4328a1cc3 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -9,6 +9,15 @@ allowBuilds:
unrs-resolver: true
catalog:
electron: '43.2.0'
+ # Pin the vitest family to the version vite-plus bundles internally.
+ # Renovate groups vite-plus/vite/vitest/@vitest/** so they only ever move
+ # together; vp migrate keeps this catalog entry aligned to whatever
+ # version vite-plus bundles. See openspec/changes/fix-vite-plus-dependency-drift.
+ vitest: 4.1.11
+ '@vitest/browser-playwright': 4.1.11
+ '@vitest/coverage-v8': 4.1.11
+ vite: npm:@voidzero-dev/vite-plus-core@0.3.0
+ vite-plus: 0.3.0
minimumReleaseAgeExclude:
- electron-menubar
overrides:
@@ -19,4 +28,14 @@ overrides:
cross-spawn: '7.0.6'
got: '11.8.6'
electron: 'catalog:'
+ '@vitest/coverage-v8': 'catalog:'
+ vite@*: 'catalog:'
+ vitest@*: 'catalog:'
savePrefix: ''
+peerDependencyRules:
+ allowAny:
+ - vite
+ - vitest
+ allowedVersions:
+ vite: '*'
+ vitest: '*'
diff --git a/renovate.json b/renovate.json
index 81678930f..99a130ac5 100644
--- a/renovate.json
+++ b/renovate.json
@@ -63,8 +63,15 @@
"matchPackageNames": ["electron-menubar"],
"minimumReleaseAge": "0 days",
"schedule": ["at any time"]
+ },
+ {
+ "description": "Keep vite-plus and the toolchain packages whose versions it bundles internally (vite, vitest, @vitest/*) in a single PR. vite-plus targets a specific vite/vitest release each version, and this project depends on the same real packages directly (not an aliased core build), so an independent bump on either side loads mismatched copies at runtime. This has broken the test suite twice before (vitest 4.1.10/4.1.11 split, PR #3215) and a third time was narrowly avoided by hand (#3224, #3226-era fix). A GitHub Actions workflow runs `vp migrate` against this group's PR branch to reconcile catalog/override entries automatically; see openspec/changes/fix-vite-plus-dependency-drift.",
+ "matchPackageNames": ["vite-plus", "vite", "vitest", "@vitest/**"],
+ "groupName": "vite monorepo",
+ "separateMultipleMajor": false
}
],
+ "gitIgnoredAuthors": ["41898282+github-actions[bot]@users.noreply.github.com"],
"customManagers": [
{
"description": "Keep sonar.projectVersion variables in sonar-project.properties in-sync",
diff --git a/src/renderer/components/avatars/AvatarWithFallback.tsx b/src/renderer/components/avatars/AvatarWithFallback.tsx
index 580543cf6..6dcebab08 100644
--- a/src/renderer/components/avatars/AvatarWithFallback.tsx
+++ b/src/renderer/components/avatars/AvatarWithFallback.tsx
@@ -1,12 +1,12 @@
import type React from 'react';
import { useState } from 'react';
+import { FeedPersonIcon, MarkGithubIcon, OrganizationIcon } from '@primer/octicons-react';
import { Avatar, Stack, Truncate } from '@primer/react';
import { type Link, Size, type UserType } from '../../types';
import { isNonHumanUser } from '../../utils/notifications/filters/userType';
-import { getDefaultUserIcon } from '../../utils/ui/icons';
export interface AvatarWithFallbackProps {
src?: Link;
@@ -16,6 +16,29 @@ export interface AvatarWithFallbackProps {
userType?: UserType;
}
+interface DefaultUserIconProps {
+ userType: UserType;
+ size?: number;
+}
+
+// Renders one of a fixed set of statically-imported icons via literal JSX
+// per branch (mirroring utils/ui/icons.ts#getDefaultUserIcon, which stays a
+// plain lookup used elsewhere/tested directly). Selecting a component via a
+// function call and rendering it as a dynamic JSX tag (``) is flagged
+// by the React Compiler as "creating a component during render" regardless of
+// where that selection happens, so each case must be a literal JSX element.
+const DefaultUserIcon: React.FC = ({ userType, size }) => {
+ switch (userType) {
+ case 'Bot':
+ case 'Mannequin':
+ return ;
+ case 'Organization':
+ return ;
+ default:
+ return ;
+ }
+};
+
export const AvatarWithFallback: React.FC = ({
src,
alt,
@@ -26,13 +49,12 @@ export const AvatarWithFallback: React.FC = ({
const [hasBrokenAvatarSource, setHasBrokenAvatarSource] = useState(false);
const isNonHuman = isNonHumanUser(userType);
- const DefaultUserIcon = getDefaultUserIcon(userType);
// TODO explore using AnchoredOverlay component (https://primer.style/components/anchored-overlay/react/alpha) to render Avatar Card on hover
return (
{!src || hasBrokenAvatarSource ? (
-
+
) : (
{
useEffect(() => {
if (!recordingShortcut) {
- setLiveModifierAccelerator('');
return;
}
@@ -223,6 +222,7 @@ export const SystemSettings: FC = () => {
icon={PencilIcon}
onClick={() => {
clearShortcutRegistrationError();
+ setLiveModifierAccelerator('');
setRecordingShortcut(true);
}}
size="small"