-
Notifications
You must be signed in to change notification settings - Fork 9.8k
chore: update flake.lock to include bun 1.3.8+ #12603
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
Conversation
|
Hey! Your PR title Please update it to start with one of:
Where See CONTRIBUTING.md for details. |
|
The following comment was made by an LLM, it may be inaccurate: No duplicate PRs found |
|
Thanks for your contribution! This PR doesn't have a linked issue. All PRs must reference an existing issue. Please:
See CONTRIBUTING.md for details. |
|
Tested locally: the fix-flake-lock branch builds successfully with the updated nixpkgs rev including bun 1.3.8. |
|
bruh :) just remove dependencies and reinstall using bun i :) this is not the solution |
|
#11919 landed in master already |
Bun 1.3.8+ with filtered installs (--filter flag) may not create the node_modules/.bun directory. Add safeReadDir (consistent with normalize-bun-binaries.ts) and early exit when directory is missing. Fixes anomalyco#12632, anomalyco#12603, anomalyco#12602
Use safeReadDir (consistent with normalize-bun-binaries.ts) and replace dynamic semver import with Bun.semver.order to remove dependency on .bun/node_modules/semver. Fixes anomalyco#12632, anomalyco#12603, anomalyco#12602
Use safeReadDir and isDirectory helpers (consistent with normalize-bun-binaries.ts) and replace dynamic semver import with Bun.semver.order. Fixes anomalyco#12632, anomalyco#12603, anomalyco#12602
@ProdigyRahul what do you mean? |
|
#11919 Tested, fixed, good. |
Updates nixpkgs in flake.lock to a rev that includes bun 1.3.8+, fixing the build failure caused by the script requiring bun@^1.3.8 while the lock had bun 1.3.6.
The issue was introduced when the packageManager was updated to bun@1.3.8, but the flake.lock remained pinned to an older nixpkgs rev.
Fixes #12602