Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(bun): bun prune support #10175

Merged
merged 17 commits into from
Mar 18, 2025
Merged

Conversation

camero2734
Copy link
Contributor

@camero2734 camero2734 commented Mar 15, 2025

Description

Resolves #9058 and #7456

Building on #9783 to add prune support for bun. This is a simple implementation that allow turbo to properly prune a bun.lock file

Basically, it just creates a new BunLockfileData with the filtered dependencies/workspaces and serializes it to bun.lock via serde_json. This is made simple since the internal layout matches the bun.lock format, so the only special serialization case I had to do was PackageEntry. This also required updating the deserialization, since it skipped parsing some parts that we need to write back out.

Testing Instructions

  1. Clone https://github.com/mugencraft/turbobun (or any other turbo + bun repo)
  2. bun install --save-text-lockfile (we need the new .lock version and not .lockb)
  3. I then do
    rm -rf ./out && cp ../turborepo/target/debug/turbo ./node_modules/.bin/turbo # Copy debug build of turbo
    bunx turbo prune @turbobun/backend --docker --skip-infer # turbo prune 🚀
  4. Open the generated out/bun.lock. It's currently outputted in an unformatted json, so I format it.
  5. Observe that the dependencies include backend (elysia) and root workspace (commitizen) dependencies, but not e.g. @turbobun/website dependencies (like next)
  6. cd ./out/json && bun install -> Bun install can read the lockfile and works!
  7. You can also patch a random package using bun patch and test that the patches are propagated correctly

Screenshots

image

@turbo-orchestrator turbo-orchestrator bot added the needs: triage New issues get this label. Remove it after triage label Mar 15, 2025
Copy link

vercel bot commented Mar 15, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
examples-basic-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 18, 2025 2:21pm
examples-designsystem-docs ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 18, 2025 2:21pm
examples-gatsby-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 18, 2025 2:21pm
examples-kitchensink-blog ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 18, 2025 2:21pm
examples-native-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 18, 2025 2:21pm
examples-nonmonorepo ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 18, 2025 2:21pm
examples-svelte-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 18, 2025 2:21pm
examples-tailwind-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 18, 2025 2:21pm
examples-vite-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 18, 2025 2:21pm
turbo-site ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 18, 2025 2:21pm

Copy link

vercel bot commented Mar 15, 2025

@camero2734 is attempting to deploy a commit to the Vercel Team on Vercel.

A member of the Team first needs to authorize it.

@chris-olszewski chris-olszewski enabled auto-merge (squash) March 18, 2025 14:35
@chris-olszewski chris-olszewski merged commit 4b8cdc4 into vercel:main Mar 18, 2025
37 checks passed
@camero2734 camero2734 deleted the bun-prune-support branch March 19, 2025 14:38
chris-olszewski pushed a commit that referenced this pull request Mar 31, 2025
### Description
Resolves #9058 and
#7456 (again)

When I tested my previous PR (#10175) on another repo, I discovered an
issue with a missing dep in the pruned lockfile

To reproduce this in the `with-yarn` example repo:
`cd apps/web && bun install dd-trace`
and
`cd apps/docs && bun install @opentelemtry/api`

Then run prune for `web` and try `bun install --frozen-lockfile` and
you'll get this:
```
error: Failed to resolve peer dependency '@opentelemetry/api' for package '@opentelemetry/core'
    at bun.lock:1:16974
InvalidPackageInfo: failed to parse lockfile: 'bun.lock'
```

### Issue 1 -- Deserialization casing
The underlying error is rather straightforward -- it was deserializing
most dependencies (`peerDependencies`, `devDependencies`,
`optionalDependencies`) to `other` 😄

![image](https://github.com/user-attachments/assets/0ca602de-c88a-4715-8db5-2f4cb620f95b)

This is because it just needed `#[serde(rename_all = "camelCase")]`
since the rust names are snake case. This is why `dependencies` happened
to work -- it's the same in snake and camel case.

By virtue of being in `other`, all non-`dependencies` packages were
effectively ignored during the pruning process, and don't always end up
in the resulting lockfile.

### Issue 2 -- optionalPeers
After fixing that, I also stumbled upon another issue:
```
WARNING  Unable to calculate transitive closures: No lockfile entry found for 'next/@playwright/test'
```

This is because we weren't accounting for the `optionalPeers` property.
`next` doesn't actually require you have `@playwright/test`, it's an
optional peer. I fixed this as well.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
needs: triage New issues get this label. Remove it after triage
Projects
None yet
Development

Successfully merging this pull request may close these issues.

"Prune is not supported for Bun" message when trying to generate files for Docker
2 participants