-
Notifications
You must be signed in to change notification settings - Fork 96
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
Improve package manager detection for Bun 1.2 compatibility #165
Conversation
- Add support for both old (bun.lockb) and new (bun.lock) Bun lock files - Handle Bun with Yarn compatibility mode (yarn.lock) - Simplify tool detection by introducing LOCK_FILES mapping - Combine command existence and lock file checks into single method This change ensures proper detection of Bun when using different versions or when running in Yarn compatibility mode (bun install --yarn).
Looks good to me. Please do add a PR with tests. |
It looks like this update changes the detection logic. Now, if I have |
Ah. Please do investigate a PR to flip that back. Thanks for catching! |
File.exist?('bun.lockb') || (tool_exists?('bun') && !File.exist?('yarn.lock')) | ||
tool_exists?('bun') && (File.exist?('bun.lockb') || | ||
File.exist?('bun.lock') || | ||
File.exist?('yarn.lock')) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When a system has both bun
installed alongside a project that uses Yarn (presence of a yarn.lock
file)
We should remove any conditional checks for yarn.lock
from bun
related lines.
Even though Bun can technically manage
yarn.lock
file.
Keeping these existence checks may lead to use of bun
when you were using yarn
before this PR has been merged and want to keep using yarn
for the project.
@@ -21,42 +21,42 @@ module Cssbundling | |||
module Tasks | |||
extend self | |||
|
|||
LOCK_FILES = { | |||
bun: %w[bun.lockb bun.lock yarn.lock], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as : #165 (comment)
@navidemad @nikitug @dhh |
I'm using bun and install packages with
bun install --yarn
and its generate a yarn.lock file, same time new version of bun 1.2 generatesbun.lock
file instead ofbun.lockb
.Some users may have bun with
yarn.lock
file or bun withbun.lock
My assets recompilation failed with:
Here is a proposal to handle this, idk what best way to do this. If this way looks ok I can fix test as well. Also we have
using_bun?
method atHelpers
module that dose not check forbun.lock
and return false if bun exists and yarn.lock presentbun.lockb
and newbun.lock
Bun lock filesyarn.lock