fix-dependabot
Dependabot PRs only update one package.json and never run bun install, so the bun.lock file is out of date and other packages in the monorepo still reference the old version. This skill fixes both problems.
Steps
-
Get PR info — Use
gh pr view <number> --json headRefName,files,title,bodyto identify the branch name, which dependency was bumped, and the old/new versions. -
Checkout the branch:
git fetch origin <branch>
git checkout <branch>
- Update all monorepo instances — Dependabot only touches one package. Search for all other
package.jsonfiles that reference the same dependency at the old version and update them too:
rg '"<dependency>": "[~^]?<old-version>"' --glob '**/package.json'
More from remotion-dev/remotion
web-renderer-test
Add a test case to the web renderer
913writing-docs
Guides for writing and editing Remotion documentation. Use when adding docs pages, editing MDX files in packages/docs, or writing documentation content.
897make-pr
Open a pull request for the current feature
843video-report
Generate a report about a video
799docs-demo
Add an interactive demo to the Remotion documentation. Use when creating a new <Demo> component for docs pages.
665add-expert
Add a new expert to the Remotion experts page
632