Avatar for the oxc-project user
oxc-project
oxc-resolver
BlogDocsChangelog

Performance History

Latest Results

chore: release v11.24.3
release-plz-2026-07-16T13-01-51Z
3 hours ago
chore: release v11.24.3
release-plz-2026-07-16T13-01-51Z
3 hours ago
chore(deps): update dependency vite-plus to v0.2.8 (#1342) This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Adoption](https://docs.renovatebot.com/merge-confidence/) | [Passing](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---|---|---| | [vite-plus](https://viteplus.dev/guide) ([source](https://redirect.github.com/voidzero-dev/vite-plus/tree/HEAD/packages/cli)) | [`0.2.7` โ†’ `0.2.8`](https://renovatebot.com/diffs/npm/vite-plus/0.2.7/0.2.8) | ![age](https://developer.mend.io/api/mc/badges/age/npm/vite-plus/0.2.8?slim=true) | ![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vite-plus/0.2.8?slim=true) | ![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vite-plus/0.2.7/0.2.8?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vite-plus/0.2.7/0.2.8?slim=true) | --- ### Release Notes <details> <summary>voidzero-dev/vite-plus (vite-plus)</summary> ### [`v0.2.8`](https://redirect.github.com/voidzero-dev/vite-plus/releases/tag/v0.2.8): vite-plus v0.2.8: monorepo target resolution, breaking VP_* environment variable renames, and install fixes [Compare Source](https://redirect.github.com/voidzero-dev/vite-plus/compare/v0.2.7...v0.2.8) Bare `vp dev`/`build`/`preview`/`pack` at a monorepo root now resolve a target package instead of silently running against the root, and three Vite+-specific environment variables move to the `VP_*` prefix without compatibility aliases. Two failures that broke Vite+ before it could run are also fixed: the crash on container images that ship no CA certificates, and the missing Rolldown binding under pnpm's global virtual store. ##### Breaking Changes - Rename three Vite+-specific environment variables to the `VP_*` prefix, with no compatibility aliases, so the old names stop working ([#&#8203;2312](https://redirect.github.com/voidzero-dev/vite-plus/pull/2312)), by [@&#8203;jong-kyung](https://redirect.github.com/jong-kyung): | Old | New | | -------------------------------- | ------------------------------ | | `VITE_LOG` | `VP_LOG` | | `VITE_GLOBAL_CLI_JS_SCRIPTS_DIR` | `VP_GLOBAL_CLI_JS_SCRIPTS_DIR` | | `VITE_UPDATE_TASK_TYPES` | `VP_UPDATE_TASK_TYPES` | Update any shell profile, CI job, or Dockerfile that sets the old names. ##### Highlights - Resolve a target package for `vp dev`, `build`, `preview`, and `pack` at a monorepo root: interactive shells get a fuzzy package picker, non-interactive runs list the candidates and exit 1 instead of building the root, and a new global `-C <dir>` flag or a `defaultPackage` setting (a single directory, or an object mapping each of the four commands to its own directory) skips the prompt ([#&#8203;2031](https://redirect.github.com/voidzero-dev/vite-plus/pull/2031), [#&#8203;2305](https://redirect.github.com/voidzero-dev/vite-plus/pull/2305)), by [@&#8203;fengmk2](https://redirect.github.com/fengmk2) - Stop aborting with exit 134 on container images that ship no CA certificates (Debian slim, distroless): the shared HTTP client now retries once with the bundled Mozilla root list, like Node's own bundled roots, and reports a real error instead of panicking when it still cannot be built ([#&#8203;2273](https://redirect.github.com/voidzero-dev/vite-plus/pull/2273), [#&#8203;2295](https://redirect.github.com/voidzero-dev/vite-plus/pull/2295)), by [@&#8203;jbmusso](https://redirect.github.com/jbmusso) and [@&#8203;fengmk2](https://redirect.github.com/fengmk2) - Resolve the bundled Rolldown binding through platform packages instead of an undeclared require back into `vite-plus`, fixing `Cannot find module 'vite-plus/binding'` under pnpm `enable-global-virtual-store` and in standalone `@voidzero-dev/vite-plus-core` installs ([#&#8203;2313](https://redirect.github.com/voidzero-dev/vite-plus/pull/2313)), by [@&#8203;fengmk2](https://redirect.github.com/fengmk2) - Add `vp pm ci` for reproducible frozen-lockfile installs, and `vp pm patch` / `vp pm patch-commit` for editing dependencies in place on pnpm, bun, and Yarn Berry (npm and Yarn Classic warn and exit successfully) ([#&#8203;2082](https://redirect.github.com/voidzero-dev/vite-plus/pull/2082), [#&#8203;2308](https://redirect.github.com/voidzero-dev/vite-plus/pull/2308)), by [@&#8203;forehalo](https://redirect.github.com/forehalo) and [@&#8203;jong-kyung](https://redirect.github.com/jong-kyung) ##### Features - Upgrade the bundled toolchain: vite `8.1.5` -> `8.2.0`, rolldown `1.2.0` -> `1.2.2`, oxlint `1.75.0` -> `1.76.0`, oxfmt `0.60.0` -> `0.61.0`, and Vite DevTools `0.4.5` -> `0.4.10` ([#&#8203;2302](https://redirect.github.com/voidzero-dev/vite-plus/pull/2302), [#&#8203;2311](https://redirect.github.com/voidzero-dev/vite-plus/pull/2311)), by [@&#8203;voidzero-guard](https://redirect.github.com/voidzero-guard)\[bot]. The new oxfmt and oxlint can flag code that passed before, so run `vp fmt` after upgrading if your CI runs `vp check`. - Read the Node.js version from `.nvmrc` when no other version source is present ([#&#8203;2244](https://redirect.github.com/voidzero-dev/vite-plus/pull/2244)), by [@&#8203;BlankParticle](https://redirect.github.com/BlankParticle) - Support pnpm v12, which ships as a native binary: Vite+ now downloads the platform-specific `@pnpm/exe.*` package and generates native shims, so `pnpm` and `pnpx` work instead of failing to exec ([#&#8203;2289](https://redirect.github.com/voidzero-dev/vite-plus/pull/2289)), by [@&#8203;jong-kyung](https://redirect.github.com/jong-kyung) - Verify the downloaded bun platform tarball against the registry `dist.integrity` hash ([#&#8203;2310](https://redirect.github.com/voidzero-dev/vite-plus/pull/2310)), by [@&#8203;jong-kyung](https://redirect.github.com/jong-kyung) ##### Fixes & Enhancements - Let `vp config` install the Git hook dispatcher without creating or modifying project hook scripts or staged-file configuration, so a custom `.vite-hooks/pre-commit` survives ([#&#8203;2280](https://redirect.github.com/voidzero-dev/vite-plus/pull/2280)), by [@&#8203;TheAlexLichter](https://redirect.github.com/TheAlexLichter) - Nest immutable global package installs under `packages/<package>/<uuid>` instead of using `#` in the path, which Node treated as a URL fragment and which broke dynamic imports inside installed packages ([#&#8203;2222](https://redirect.github.com/voidzero-dev/vite-plus/pull/2222)), by [@&#8203;liangmiQwQ](https://redirect.github.com/liangmiQwQ) - Keep the recorded version spec on global installs, so `vp update -g` follows a dist tag or range instead of silently resolving back to `latest`, `vp outdated -g` reports Wanted versus Latest, and `vp update -g --latest` explicitly moves packages back to `latest` ([#&#8203;2249](https://redirect.github.com/voidzero-dev/vite-plus/pull/2249)), by [@&#8203;TheAlexLichter](https://redirect.github.com/TheAlexLichter) - Stop deleting a managed Node.js runtime that another process is concurrently installing ([#&#8203;2248](https://redirect.github.com/voidzero-dev/vite-plus/pull/2248)), by [@&#8203;shulaoda](https://redirect.github.com/shulaoda) - Preserve the real exit code when a spawned process is terminated by a signal on Unix ([#&#8203;2154](https://redirect.github.com/voidzero-dev/vite-plus/pull/2154)), by [@&#8203;liangmiQwQ](https://redirect.github.com/liangmiQwQ) - Honor an explicit `vp create --package-manager` outside monorepos instead of inheriting the manager from a non-monorepo ancestor directory ([#&#8203;2226](https://redirect.github.com/voidzero-dev/vite-plus/pull/2226)), by [@&#8203;jong-kyung](https://redirect.github.com/jong-kyung) - Scaffold the `vite:library` template into a directory that contains only `.git`, while still refusing to overwrite existing user files ([#&#8203;2287](https://redirect.github.com/voidzero-dev/vite-plus/pull/2287)), by [@&#8203;RSS1102](https://redirect.github.com/RSS1102) - Render help for delegated commands from the local CLI, so `vp <command> --help` matches the installed toolchain instead of drifting ([#&#8203;2184](https://redirect.github.com/voidzero-dev/vite-plus/pull/2184)), by [@&#8203;liangmiQwQ](https://redirect.github.com/liangmiQwQ) - Resolve `typeAware` and `typeCheck` options inherited through Oxlint `extends`, so `vp check --no-lint` runs and classifies type checking correctly ([#&#8203;2228](https://redirect.github.com/voidzero-dev/vite-plus/pull/2228)), by [@&#8203;jong-kyung](https://redirect.github.com/jong-kyung) - Report `(no version)` instead of `unknown` when globally installing a local package that has no `version` field ([#&#8203;2232](https://redirect.github.com/voidzero-dev/vite-plus/pull/2232)), by [@&#8203;liangmiQwQ](https://redirect.github.com/liangmiQwQ) ##### Refactor - Rename the Git hooks environment variable to `VP_GIT_HOOKS`, keeping `VITE_GIT_HOOKS` working as a deprecated alias ([#&#8203;2195](https://redirect.github.com/voidzero-dev/vite-plus/pull/2195)), by [@&#8203;dennybiasiolli](https://redirect.github.com/dennybiasiolli) - Consolidate the package manager infrastructure so typed command arguments are the source of truth for per-manager compatibility ([#&#8203;2140](https://redirect.github.com/voidzero-dev/vite-plus/pull/2140)), by [@&#8203;forehalo](https://redirect.github.com/forehalo) - Generate the Zed language settings from a language list instead of 17 near-identical blocks ([#&#8203;2294](https://redirect.github.com/voidzero-dev/vite-plus/pull/2294)), by [@&#8203;jong-kyung](https://redirect.github.com/jong-kyung) - Share the agent-file detect and write traversal helpers so both passes apply identical rules ([#&#8203;2296](https://redirect.github.com/voidzero-dev/vite-plus/pull/2296)), by [@&#8203;jong-kyung](https://redirect.github.com/jong-kyung) - Drop redundant clippy allow attributes in the global CLI ([#&#8203;2235](https://redirect.github.com/voidzero-dev/vite-plus/pull/2235)), by [@&#8203;shulaoda](https://redirect.github.com/shulaoda) ##### Docs - Avoid a duplicate `vp` installation step in the onboarding prompt ([#&#8203;2291](https://redirect.github.com/voidzero-dev/vite-plus/pull/2291)), by [@&#8203;Arcadi4](https://redirect.github.com/Arcadi4) - Recommend stacked pull requests for submitting changes ([#&#8203;2281](https://redirect.github.com/voidzero-dev/vite-plus/pull/2281)), by [@&#8203;fengmk2](https://redirect.github.com/fengmk2) - Correct stale delegation comments in the global CLI ([#&#8203;2236](https://redirect.github.com/voidzero-dev/vite-plus/pull/2236)), by [@&#8203;shulaoda](https://redirect.github.com/shulaoda) - Improve the release draft review guidance in the release-manager skill ([#&#8203;2285](https://redirect.github.com/voidzero-dev/vite-plus/pull/2285)), by [@&#8203;wan9chi](https://redirect.github.com/wan9chi) ##### Chore - Stop emitting unmet peer warnings for the `vite-plus` peer of oxfmt and oxlint on every install ([#&#8203;2321](https://redirect.github.com/voidzero-dev/vite-plus/pull/2321)), by [@&#8203;fengmk2](https://redirect.github.com/fengmk2) - Remove duplicate direct dependency declarations so each build dependency is owned by one workspace ([#&#8203;2318](https://redirect.github.com/voidzero-dev/vite-plus/pull/2318)), by [@&#8203;jong-kyung](https://redirect.github.com/jong-kyung) - Declare `@emnapi` peers where `@napi-rs/cli` is used ([#&#8203;2319](https://redirect.github.com/voidzero-dev/vite-plus/pull/2319)), by [@&#8203;jong-kyung](https://redirect.github.com/jong-kyung) - Exclude `rollup-tests` from the workspace and update `basic-ftp` ([#&#8203;2322](https://redirect.github.com/voidzero-dev/vite-plus/pull/2322)), by [@&#8203;fengmk2](https://redirect.github.com/fengmk2) - Remove unused `EnvConfig` fields ([#&#8203;2320](https://redirect.github.com/voidzero-dev/vite-plus/pull/2320)), by [@&#8203;jong-kyung](https://redirect.github.com/jong-kyung) - Remove the obsolete peer dependency merger tool ([#&#8203;2303](https://redirect.github.com/voidzero-dev/vite-plus/pull/2303)), by [@&#8203;jong-kyung](https://redirect.github.com/jong-kyung) - Stop the staging deploy from triggering on external pull requests ([#&#8203;2293](https://redirect.github.com/voidzero-dev/vite-plus/pull/2293)), by [@&#8203;BlankParticle](https://redirect.github.com/BlankParticle) - Kill the real `vp` process, and kill it before its children, in the `env_install_interrupt` snapshot test ([#&#8203;2299](https://redirect.github.com/voidzero-dev/vite-plus/pull/2299), [#&#8203;2316](https://redirect.github.com/voidzero-dev/vite-plus/pull/2316)), by [@&#8203;fengmk2](https://redirect.github.com/fengmk2) - Suppress racy optimizer logs in the `vitest_browser_mode` snapshot test ([#&#8203;2297](https://redirect.github.com/voidzero-dev/vite-plus/pull/2297)), by [@&#8203;fengmk2](https://redirect.github.com/fengmk2) - Remove the obsolete auto-install environment from the snapshot tests ([#&#8203;2163](https://redirect.github.com/voidzero-dev/vite-plus/pull/2163)), by [@&#8203;liangmiQwQ](https://redirect.github.com/liangmiQwQ) ##### Bundled Versions | Tool | Version | Source | | --------------- | ---------- | ------------------------------------------------------------------------------------------------- | | vite | `8.2.0` | [`fa79f9a`](https://redirect.github.com/vitejs/vite/commit/fa79f9ab699f9a22a6f9b50f3d247be6b51f684d) | | rolldown | `1.2.2` | [`872b98a`](https://redirect.github.com/rolldown/rolldown/commit/872b98ac7476eb7d5892a2913e4ba010d124c6ac) | | tsdown | `0.22.14` | [npm](https://npmx.dev/package/tsdown/v/0.22.14) | | vitest | `4.1.10` | [npm](https://npmx.dev/package/vitest/v/4.1.10) | | oxlint | `1.76.0` | [npm](https://npmx.dev/package/oxlint/v/1.76.0) | | oxlint-tsgolint | `7.0.2001` | [npm](https://npmx.dev/package/oxlint-tsgolint/v/7.0.2001) | | oxfmt | `0.61.0` | [npm](https://npmx.dev/package/oxfmt/v/0.61.0) | ##### Upgrade ```bash vp upgrade ``` ##### New Contributors [@&#8203;jbmusso](https://redirect.github.com/jbmusso), [@&#8203;Arcadi4](https://redirect.github.com/Arcadi4), [@&#8203;dennybiasiolli](https://redirect.github.com/dennybiasiolli), [@&#8203;RSS1102](https://redirect.github.com/RSS1102) **Full Changelog**: <https://github.com/voidzero-dev/vite-plus/compare/v0.2.7...v0.2.8> ##### Published Packages - `@voidzero-dev/vite-plus-core@0.2.8` - `vite-plus@0.2.8` ##### Installation **macOS/Linux:** ```bash curl -fsSL https://vite.plus | bash ``` **Windows:** ```powershell irm https://vite.plus/ps1 | iex ``` Or download and run `vp-setup.exe` from the assets below. **Docker:** ```bash docker run --rm -it -v "$PWD:/app" -w /app ghcr.io/voidzero-dev/vite-plus:0.2.8 vp build ``` Run any `vp` command without installing it; see the [Docker guide](https://viteplus.dev/guide/docker) for more. </details> --- ### Configuration ๐Ÿ“… **Schedule**: (in timezone Asia/Shanghai) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) ๐Ÿšฆ **Automerge**: Enabled. โ™ป **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. ๐Ÿ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/oxc-project/oxc-resolver). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0NC4xMi4wIiwidXBkYXRlZEluVmVyIjoiNDQuMTIuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
main
3 hours ago
chore: release v11.24.3
release-plz-2026-07-16T13-01-51Z
3 days ago
chore: release v11.24.3
release-plz-2026-07-16T13-01-51Z
3 days ago
chore(deps): update codspeedhq/action action to v5 (#1340) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [CodSpeedHQ/action](https://redirect.github.com/CodSpeedHQ/action) | action | major | `v4.19.1` โ†’ `v5.0.1` | --- ### Release Notes <details> <summary>CodSpeedHQ/action (CodSpeedHQ/action)</summary> ### [`v5.0.1`](https://redirect.github.com/CodSpeedHQ/action/releases/tag/v5.0.1) [Compare Source](https://redirect.github.com/CodSpeedHQ/action/compare/v5.0.0...v5.0.1) #### ๐Ÿš€ Highlights ##### More precise measurements by default `cycle-estimation` is now enabled by default, giving more precise benchmark cycle estimation in Simulation mode. See [docs](https://codspeed.io/docs/instruments/cpu#estimating-cycles). ##### New: allocation exclusion Opt in to `exclude-allocations` to remove allocator time from benchmarks in Simulation mode and reduce variance. See [docs](https://codspeed.io/docs/instruments/cpu/allocation-exclusion). ##### `samply`-based profiler by default on Linux The walltime profiler now uses `samply` on all OSes. Set `CODSPEED_WALLTIME_PROFILER=perf` to restore the previous behavior. #### โš ๏ธ Breaking changes - `cycle-estimation` is now enabled by default (see above) - The `samply`-based profiler is now the default on Linux; set `CODSPEED_WALLTIME_PROFILER=perf` to revert #### Details ##### <!-- 0 -->๐Ÿš€ Features - Load eBPF through a delegated BPF token by [@&#8203;GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Enable cycle estimation and allocation exclusion by default by [@&#8203;not-matthias](https://redirect.github.com/not-matthias) in [#&#8203;461](https://redirect.github.com/CodSpeedHQ/runner/pull/461) - Make samply profiler default for all OSes ([#&#8203;472](https://redirect.github.com/CodSpeedHQ/action/issues/472)) by [@&#8203;GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) in [#&#8203;475](https://redirect.github.com/CodSpeedHQ/runner/pull/475) ##### <!-- 1 -->๐Ÿ› Bug Fixes - Classify mapped libraries without init-userns privilege by [@&#8203;GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Disable allocator exclusion by default ([#&#8203;489](https://redirect.github.com/CodSpeedHQ/action/issues/489)) by [@&#8203;not-matthias](https://redirect.github.com/not-matthias) in [#&#8203;489](https://redirect.github.com/CodSpeedHQ/runner/pull/489) ##### <!-- 10 -->๐Ÿ’ผ Other - Bump the memtrack pin to 1.4.0 by [@&#8203;adriencaccia](https://redirect.github.com/adriencaccia) in [#&#8203;484](https://redirect.github.com/CodSpeedHQ/runner/pull/484) ##### <!-- 2 -->๐Ÿ—๏ธ Refactor - Hook-based CPU isolation for the walltime runner by [@&#8203;GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) ##### <!-- 6 -->๐Ÿงช Testing - Run every tracking test under both BPF variants by [@&#8203;GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) ##### <!-- 7 -->โš™๏ธ Internals - chore: bump runner version to 5.0.1 by [@&#8203;github-actions](https://redirect.github.com/github-actions)\[bot] in [#&#8203;228](https://redirect.github.com/CodSpeedHQ/action/pull/228) - docs: bump documented action version to v5 by [@&#8203;adriencaccia](https://redirect.github.com/adriencaccia) in [#&#8203;227](https://redirect.github.com/CodSpeedHQ/action/pull/227) - Bump submodule to reduce debug info server timeouts by [@&#8203;GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) - Make tests run release builds of the binaries by [@&#8203;GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) in [#&#8203;456](https://redirect.github.com/CodSpeedHQ/runner/pull/456) - Update submodule to fix fmt and ignore ubuntu debuginfod serv by [@&#8203;GuillaumeLagrange](https://redirect.github.com/GuillaumeLagrange) #### Install codspeed-runner 5.0.1 ##### Install prebuilt binaries via shell script ```sh curl --proto '=https' --tlsv1.2 -LsSf https://github.com/CodSpeedHQ/codspeed/releases/download/v5.0.1/codspeed-runner-installer.sh | sh ``` #### Download codspeed-runner 5.0.1 | File | Platform | Checksum | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------- | ------------------------------------------------------------------------------------------------------------------------------------ | | [codspeed-runner-aarch64-apple-darwin.tar.gz](https://redirect.github.com/CodSpeedHQ/codspeed/releases/download/v5.0.1/codspeed-runner-aarch64-apple-darwin.tar.gz) | Apple Silicon macOS | [checksum](https://redirect.github.com/CodSpeedHQ/codspeed/releases/download/v5.0.1/codspeed-runner-aarch64-apple-darwin.tar.gz.sha256) | | [codspeed-runner-aarch64-unknown-linux-musl.tar.gz](https://redirect.github.com/CodSpeedHQ/codspeed/releases/download/v5.0.1/codspeed-runner-aarch64-unknown-linux-musl.tar.gz) | ARM64 MUSL Linux | [checksum](https://redirect.github.com/CodSpeedHQ/codspeed/releases/download/v5.0.1/codspeed-runner-aarch64-unknown-linux-musl.tar.gz.sha256) | | [codspeed-runner-x86\_64-unknown-linux-musl.tar.gz](https://redirect.github.com/CodSpeedHQ/codspeed/releases/download/v5.0.1/codspeed-runner-x86_64-unknown-linux-musl.tar.gz) | x64 MUSL Linux | [checksum](https://redirect.github.com/CodSpeedHQ/codspeed/releases/download/v5.0.1/codspeed-runner-x86_64-unknown-linux-musl.tar.gz.sha256) | **Full Runner Changelog**: <https://github.com/CodSpeedHQ/codspeed/blob/main/CHANGELOG.md> **Full Changelog**: <https://github.com/CodSpeedHQ/action/compare/v4.19.1...v5.0.1> ### [`v5.0.0`](https://redirect.github.com/CodSpeedHQ/action/compare/v4.19.1...v5.0.0) [Compare Source](https://redirect.github.com/CodSpeedHQ/action/compare/v4.19.1...v5.0.0) </details> --- ### Configuration ๐Ÿ“… **Schedule**: (in timezone Asia/Shanghai) - Branch creation - "before 10am on monday" - Automerge - At any time (no schedule defined) ๐Ÿšฆ **Automerge**: Enabled. โ™ป **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. ๐Ÿ”• **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/oxc-project/oxc-resolver). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0NC4zLjIiLCJ1cGRhdGVkSW5WZXIiOiI0NC4zLjIiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
main
3 days ago
chore(deps): update codspeedhq/action action to v5
renovate/major-github-actions
3 days ago

Latest Branches

CodSpeed Performance Gauge
-1%
chore: release v11.24.3#1312
3 hours ago
1243ed9
release-plz-2026-07-16T13-01-51Z
CodSpeed Performance Gauge
-1%
chore(deps): update dependency vite-plus to v0.2.8#1342
3 hours ago
79bacce
renovate/vite+
CodSpeed Performance Gauge
N/A
3 days ago
c1040f8
renovate/major-github-actions
ยฉ 2026 CodSpeed Technology
Home Terms Privacy Docs