You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(env): add corepack to the default shims tool list
vp env setup now creates a corepack shim alongside node/npm/npx. The shim
resolves corepack in this order: a vp-managed global install
(vp install -g corepack), the copy bundled with the project-resolved
Node.js (Node.js <= 24), and finally an automatic managed install on
Node.js 25+ where corepack is no longer bundled. The auto-install links
only the corepack bin so it never conflicts with vp-managed package
managers like an existing vp install -g pnpm.
corepack enable/disable without an explicit --install-directory get
--install-directory ~/.vite-plus/bin injected so the pnpm/yarn launchers
land on PATH. Vite+-owned shims (npm/npx and vp install -g binaries) are
restored with a warning if corepack removes or replaces them, and
vp remove -g corepack keeps the default shim in place.
Closes#1309Closes#858
0 commit comments