We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 95d9b59 + 57de5ef commit 466cd57Copy full SHA for 466cd57
lib/install/helpers.rb
@@ -15,8 +15,7 @@ def bundler_x_cmd
15
16
def using_bun?
17
tool_exists?('bun') && (File.exist?('bun.lockb') ||
18
- File.exist?('bun.lock') ||
19
- File.exist?('yarn.lock'))
+ File.exist?('bun.lock'))
20
end
21
22
def tool_exists?(tool)
lib/tasks/cssbundling/build.rake
@@ -22,7 +22,7 @@ module Cssbundling
extend self
23
24
LOCK_FILES = {
25
- bun: %w[bun.lockb bun.lock yarn.lock],
+ bun: %w[bun.lockb bun.lock],
26
yarn: %w[yarn.lock],
27
pnpm: %w[pnpm-lock.yaml],
28
npm: %w[package-lock.json]
0 commit comments