You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 generates bun.lock file instead of bun.lockb.
Some users may have bun with yarn.lock file or bun with bun.lock
My assets recompilation failed with:
RAILS_ENV=production rails assets:precompile
bin/rails aborted!
cssbundling-rails: Command install failed, ensure yarn is installed
Tasks: TOP => assets:precompile => css:build => css:install
(See full trace by running task with --trace)
Here is a proposal PR to handle this, idk what best way to do this. Also we have using_bun? method at Helpers module that dose not check for bun.lock and return false if bun exists and yarn.lock present
The text was updated successfully, but these errors were encountered:
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 PR to handle this, idk what best way to do this. Also we have
using_bun?
method atHelpers
module that dose not check forbun.lock
and return false if bun exists and yarn.lock presentThe text was updated successfully, but these errors were encountered: