fix(release): skip scripts during Vercel installs - #4796
Merged
Conversation
|
Important Review skippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Pro Plus Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
t3dotgg
force-pushed
the
fix/vercel-prepare-backups
branch
from
July 28, 2026 23:07
4f043a3 to
975655a
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.
The hosted web deployment runs its filtered Vercel install command twice. Both installs invoked the root prepare lifecycle, so the persistent build cache accumulated Effect tsgo backups until it hit the 100-file limit and blocked releases.
Run the hosted web install with --ignore-scripts. That build does not need local LSP setup or commit hooks, and workspace installs outside Vercel keep their existing lifecycle behavior.
Verification:
Generated by GPT-5.6 Sol in T3 Code using the Codex harness.
Note
Low Risk
Only changes Vercel install behavior for the hosted web app; local and non-Vercel CI installs are unchanged.
Overview
Adds
--ignore-scriptsto the hosted webinstallCommandinvercel.tsso Vercel’svp installno longer runs workspacepreparehooks (includingeffect-tsgo patch).That stops repeated installs during release deploys from piling up tsgo backups in the persistent build cache and hitting the 100-file limit that blocked deployments.
Reviewed by Cursor Bugbot for commit 975655a. Bugbot is set up for automated code reviews on this repo. Configure here.
Note
Skip lifecycle scripts during Vercel dependency installation
Adds
--ignore-scriptsto thevp installcommand in the Vercel install step in vercel.ts to prevent package lifecycle scripts from running during CI installs.Macroscope summarized 975655a.
Summary by CodeRabbit