build(chore): refresh development dependencies#251
Open
Ducksss wants to merge 1 commit into
Open
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This was referenced Jul 10, 2026
Summary: - Update Next, Playwright, Vitest, Fumadocs MDX, tsx, and Vite path tooling with one regenerated pnpm 10 lockfile. - Group coupled Dependabot updates to reduce unverified lockfile churn. - Run heavy browser suites in fresh servers through the local CLI and wait for copy-controller hydration before interaction assertions. Rationale: - Validate the dependency graph as one unit while bounding Turbopack memory and keeping filtered Playwright commands shell-free. - Keep weekly maintenance focused without masking integration failures. Tests: - npx pnpm@10 install --frozen-lockfile - npx pnpm@10 audit - E2E_PORT=3112 npx pnpm@10 run test:release - Node 20: source build, typecheck, registry, install, and CLI build
ae2016a to
e5d2593
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Why
The individual dependency PRs were behind
dev, shared the same lockfile, and did not validate the final combined graph. Playwright 1.61 also rejects the obsoletetsx/esmloader, while one-process route walks retain enough Turbopack state to exhaust the local heap. This replacement validates the combined update and gives each memory-heavy suite a fresh server boundary without narrowing future test discovery.Verification
npx pnpm@10 install --frozen-lockfilenpx pnpm@10 audit— no known vulnerabilitiesE2E_PORT=3112 npx pnpm@10 run test:releasegit diff --checkSupersedes
#222, #244, #245, #246, and #247 were closed after this replacement passed the local combined gate.