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

Add support for yarnpkg #162

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 16 additions & 4 deletions lib/install/helpers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,23 @@

module Helpers
def bundler_cmd
using_bun? ? "bun" : "yarn"
if using_bun?
"bun"
elsif tool_exists?('yarnpkg')
"yarnpkg"
else
"yarn"
end
end

def bundler_run_cmd
using_bun? ? "bun run" : "yarn"
if using_bun?
"bun"
elsif tool_exists?('yarnpkg')
"yarnpkg"
else
"yarn"
end
end

def using_bun?
Expand All @@ -29,11 +41,11 @@ def add_package_json_script(name, script, run_script=true)
when 7.1...8.0
say "Add #{name} script"
run %(npm set-script #{name} "#{script}")
run %(yarn #{name}) if run_script
tool_exists?("yarnpkg") ? (run %(yarnpkg #{name}) if run_script) : (run %(yarn #{name}) if run_script)
when (8.0..)
say "Add #{name} script"
run %(npm pkg set scripts.#{name}="#{script}")
run %(yarn #{name}) if run_script
tool_exists?("yarnpkg") ? (run %(yarnpkg #{name}) if run_script) : (run %(yarn #{name}) if run_script)
else
say %(Add "scripts": { "#{name}": "#{script}" } to your package.json), :green
end
Expand Down
4 changes: 3 additions & 1 deletion lib/tasks/cssbundling/build.rake
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ module Cssbundling
case tool
when :bun then "bun install"
when :yarn then "yarn install"
when :yarnpkg then "yarnpkg install"
when :pnpm then "pnpm install"
when :npm then "npm install"
else raise "cssbundling-rails: No suitable tool found for installing JavaScript dependencies"
Expand All @@ -35,6 +36,7 @@ module Cssbundling
case tool
when :bun then "bun run build:css"
when :yarn then "yarn build:css"
when :yarnpkg then "yarnpkg build:css"
when :pnpm then "pnpm build:css"
when :npm then "npm run build:css"
else raise "cssbundling-rails: No suitable tool found for building CSS"
Expand All @@ -44,11 +46,11 @@ module Cssbundling
def tool
case
when File.exist?('bun.lockb') then :bun
when File.exist?('yarn.lock') then :yarn
when File.exist?('pnpm-lock.yaml') then :pnpm
when File.exist?('package-lock.json') then :npm
when tool_exists?('bun') then :bun
when tool_exists?('yarn') then :yarn
when tool_exists?('yarnpkg') then :yarnpkg
when tool_exists?('pnpm') then :pnpm
when tool_exists?('npm') then :npm
end
Expand Down