Skip to content

⬆️ deps: Update Node.js dev dependencies#81

Merged
renovate[bot] merged 2 commits into
mainfrom
renovate/nodejs-dev-dependencies
May 3, 2026
Merged

⬆️ deps: Update Node.js dev dependencies#81
renovate[bot] merged 2 commits into
mainfrom
renovate/nodejs-dev-dependencies

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented May 3, 2026

This PR contains the following updates:

Package Change Age Confidence
typescript (source) 6.0.26.0.3 age confidence
vite-plus (source) 0.1.160.1.20 age confidence
vitest (source) 4.1.44.1.5 age confidence

Release Notes

microsoft/TypeScript (typescript)

v6.0.3

Compare Source

voidzero-dev/vite-plus (vite-plus)

v0.1.20: vite-plus v0.1.20

Compare Source

This release focuses on experience improvements, bug fixes, and dependency updates.

Features
  • Auto-migrate ESLint/Prettier to oxlint/oxfmt in vp create (#​1434) — @​fengmk2
  • Multi-editor selection in vp create (#​1438) — @​lyzno1
  • Ship docs directly at vite-plus/docs (#​1440) — @​cpojer
  • Redefine vp check --no-lint for type-check-only workflow (#​1444) — @​jong-kyung
  • Error on vp install -g without package names (#​1472) — @​liangmiQwQ
  • Add language-specific formatter overrides to .vscode/settings.json (#​1491) — @​oilater
  • Platform support for targets without input auto-inference (e.g. Android) — tasks still run, but those relying on auto-inference run uncached with a summary noting that input must be configured manually to enable caching (vite-task#352) — @​branchseer
  • Upgrade upstream dependencies: vite v8.0.10, vitest 4.1.5, rolldown v1.0.0-rc.17, tsdown 0.21.10, oxfmt 0.46.0, oxlint 1.61.0, oxlint-tsgolint 0.22.0, oxc toolchain 0.127.0, @vitejs/devtools 0.1.15, @napi-rs/wasm-runtime ^1.1.4, diff ^9.0.0 (#​1435, #​1460, #​1469, #​1479) — @​Brooooooklyn
Fixes & Enhancements
  • Condense Vite+ AGENTS.md content (#​1430) — @​cpojer
  • Suppress Vite+ header in non-TTY and git hook contexts (#​1439) — @​fengmk2
  • Avoid truncating lock file to prevent sharing violation on Windows (#​1467) — @​rorychatt
  • Support PowerShell on non-Windows platforms (#​1481) — @​nekomoyi
  • vp run no longer aborts with failed to prepare the command for injection: Invalid argument when the user environment already has LD_PRELOAD (Linux) or DYLD_INSERT_LIBRARIES (macOS) set; the tracer shim is now appended to any existing value and placed last, preserving user preloads' symbol-interposition precedence (vite-task#349) — @​branchseer
Docs
Chore
Published Packages
  • @voidzero-dev/vite-plus-core@0.1.20
  • @voidzero-dev/vite-plus-test@0.1.20
  • vite-plus@0.1.20
Installation

macOS/Linux:

curl -fsSL https://vite.plus | bash

Windows:

irm https://vite.plus/ps1 | iex

Or download and run vp-setup.exe from the assets below.

Upgrade:

vp upgrade
New Contributors

Welcome to all new contributors! 🎉

@​branchv, @​lyzno1, @​yuyinws, @​rorychatt, @​oilater

Full Changelog: voidzero-dev/vite-plus@v0.1.19...v0.1.20

v0.1.19: vite-plus v0.1.19 — Windows polish, vp rebuild, and lazy plugin loading

Compare Source

A reliability-focused release: terminal handling and file-handle leaks on Windows are fixed, a top-level vp rebuild alias lands, and lazyPlugins() defers plugin initialization until first use.

Highlights
  • Windows Ctrl+C — terminal state is now restored after Ctrl+C in interactive commands, and .cmd shims are routed through PowerShell to stop Windows corrupting the terminal (#​1407, #​1414)
  • Workspace file-handle leak on Windowsvp run dev no longer keeps an open handle on pnpm-workspace.yaml for the life of the session, so pnpm in a second terminal can rewrite the file without EPERM (#​1400, vite-task#335)
  • CLI extra args leaking into dependent tasks — fixed a bug where args after a task name (e.g. vp run test some-filter) were forwarded to tasks pulled in via dependsOn, breaking their execution (vite-task#332)
  • Top-level vp rebuild alias — rebuild your monorepo with a single command, no run -- wrapping needed (#​1383)
  • Conditional plugin loading — new lazyPlugins() helper defers plugin initialization until first use (#​1215)
Features
Fixes & Enhancements
Refactor
Docs
Chore
Published Packages
  • @voidzero-dev/vite-plus-core@0.1.19
  • @voidzero-dev/vite-plus-test@0.1.19
  • vite-plus@0.1.19
Installation

macOS/Linux:

curl -fsSL https://vite.plus | bash

Windows:

irm https://vite.plus/ps1 | iex

Or download and run vp-setup.exe from the assets below.

Upgrade:

vp upgrade
New Contributors

Welcome to all new contributors! 🎉

@​Han5991, @​Arthie

Full Changelog: voidzero-dev/vite-plus@v0.1.18...v0.1.19

v0.1.18: vite-plus v0.1.18

Compare Source

vite-plus v0.1.18

Published Packages
  • @voidzero-dev/vite-plus-core@0.1.18
  • @voidzero-dev/vite-plus-test@0.1.18
  • vite-plus@0.1.18
Installation

macOS/Linux:

curl -fsSL https://vite.plus | bash

Windows:

irm https://vite.plus/ps1 | iex

Or download and run vp-setup.exe from the assets below.

What's Changed

  • feat(check): support --no-error-on-unmatched-pattern for fmt and lint by @​fengmk2 in #​1354

Full Changelog: voidzero-dev/vite-plus@v0.1.17...v0.1.18

v0.1.17: vite-plus v0.1.17 — Windows installer, Nushell, and safer upgrades

Compare Source

Broader platform reach with a standalone Windows installer and Nushell shell support.

Highlights
  • Windows .exe installer — standalone vp-setup.exe now shipped as release asset for fully offline-friendly Windows installs (#​1293)
  • Nushell support — new env.nu wrapper makes vp env work natively in Nushell (#​1312)
  • Node.js compatibility guardvp now blocks execution on incompatible Node.js versions instead of failing opaquely (#​1360)
  • Safer global install & vp upgrade — hardened trampoline regeneration and overall upgrade path to avoid leaving partial installs behind (#​1338, #​1369)
  • Cached vp check — task runner now caches vp check output for faster repeat runs (#​1328)
Features
Fixes & Enhancements
Refactor
Docs
Chore
Published Packages
  • @voidzero-dev/vite-plus-core@0.1.17
  • @voidzero-dev/vite-plus-test@0.1.17
  • vite-plus@0.1.17
Installation

macOS/Linux:

curl -fsSL https://vite.plus | bash

Windows:

irm https://vite.plus/ps1 | iex

Or download and run vp-setup.exe from the assets below.

Upgrade:

vp upgrade
New Contributors

Welcome to all new contributors! 🎉

@​T4ko0522

Full Changelog: voidzero-dev/vite-plus@v0.1.16...v0.1.17

vitest-dev/vitest (vitest)

v4.1.5

Compare Source

   🚀 Experimental Features
   🐞 Bug Fixes
    View changes on GitHub

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, only on Monday (* 0-3 * * 1)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the dependencies Pull requests that update a dependency file label May 3, 2026
@renovate renovate Bot enabled auto-merge May 3, 2026 14:29
@renovate renovate Bot added the dependencies Pull requests that update a dependency file label May 3, 2026
@renovate renovate Bot force-pushed the renovate/nodejs-dev-dependencies branch from af3abeb to c3a0c44 Compare May 3, 2026 15:30
@renovate renovate Bot force-pushed the renovate/nodejs-dev-dependencies branch from c3a0c44 to f2031e4 Compare May 3, 2026 15:30
@renovate renovate Bot added this pull request to the merge queue May 3, 2026
Merged via the queue into main with commit bf862fa May 3, 2026
7 of 8 checks passed
@renovate renovate Bot deleted the renovate/nodejs-dev-dependencies branch May 3, 2026 15:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant