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

Improved detection logic for package manager #171

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

navidemad
Copy link
Contributor

@navidemad navidemad commented Mar 9, 2025

rails/jsbundling-rails#213 (comment)

Summary

This PR enhances the CSS Bundling Rails gem by implementing comprehensive support for multiple JavaScript package managers (Yarn, Bun, PNPM, and NPM) with improved detection logic and consistent behavior.

Changes

  • Refactored package manager detection: Uses a more reliable approach by first checking lock files, then available executables
  • Prioritized Yarn detection: Since most projects are still using Yarn, it's checked before Bun
  • Fixed Bun detection: Removed yarn.lock from Bun management to prevent misidentification
  • Implemented strategy pattern: Created dedicated installation strategies for each package manager
  • Standardized command structure: Unified approach to running commands across different package managers
  • Code organization: Moved related functionality into constants and clean helper methods
  • Parameter improvements: Updated method signatures to use named parameters for better readability
  • Performance optimization: Memoized package_manager method to avoid redundant detection

Technical Details

  • Created TOOLS_COMMANDS constant mapping each package manager to its specific commands
  • Implemented SCRIPT_STRATEGIES to handle package.json script modifications per package manager
  • Refactored detection logic into tool_determined_by_config_file and tool_determined_by_executable
  • Changed priority order in detection to prefer Yarn as the default when multiple options are available
  • Added proper frozen string literal comment for performance

This change enhances developer experience by providing better support for their preferred package manager while maintaining backward compatibility.

@navidemad navidemad force-pushed the feat-package-manager-detection branch 7 times, most recently from b7bab1d to 5dd3185 Compare March 9, 2025 15:20
@navidemad navidemad changed the title Package manager detection + minitest Package manager detection Mar 9, 2025
@navidemad navidemad force-pushed the feat-package-manager-detection branch 4 times, most recently from 55e6f72 to ae8ee6c Compare March 9, 2025 15:28
@navidemad navidemad changed the title Package manager detection Improved detection logic for package manager Mar 9, 2025

helper.run %(#{helper.bundler_run_cmd} #{name}) if run_script
end
}.freeze
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is interesting, but too complicated.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I get what you mean, i commited a new version a bit more simpler to read.

@navidemad navidemad force-pushed the feat-package-manager-detection branch from ae8ee6c to 27e8fd8 Compare March 9, 2025 18:47
Comment on lines 81 to 83
when File.exist?("yarn.lock") then :yarn
when File.exist?("bun.lockb") then :bun
when File.exist?("bun.lock") then :bun

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Bun lockfiles should come before yarn.lock, since Bun optionally generates a yarn.lock file.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch, i update

@le0pard
Copy link

le0pard commented Apr 4, 2025

Lets review it again, so we fixed #169

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants