Merged
Conversation
- Update packageManager field in package.json to use Bun - Replace all yarn commands with bun equivalents in package scripts - Update GitHub Actions workflows to use setup-bun action - Remove Yarn configuration files (.yarnrc.yml, .yarn directory) - Remove yarn.lock (bun.lockb will be generated on next install) - Update VSCode settings and documentation references
- Replace Yarn-specific .gitignore entries with Bun equivalents - Remove Yarn .cjs and directory git-lfs entries from .gitattributes - Keep git-lfs for docs/explore.gif (still needed) - GitHub Actions already updated (yarn cache removed, git-lfs kept for gif)
The --frozen-lockfile flag requires an existing bun.lockb file, which doesn't exist yet. Bun will generate it on first install. Once bun.lockb is committed, we can add --frozen-lockfile back to ensure deterministic installs in CI.
- Remove git-lfs checkout steps (only needed for Yarn .cjs files) - Remove Node.js setup step (using Bun now) - docs/explore.gif git-lfs tracking kept in .gitattributes but not needed for CI
Bun doesn't support the --filter flag. Changed to explicitly cd into each workspace directory and run commands there instead. Changed: - bun run --filter '*' lint → cd p5-analysis && bun run lint && cd ../p5-server && bun run lint - Same pattern for build, test, clean, and build:docs
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.
Replace Yarn with Bun package manager