Skip to content

Commit

Permalink
Fix "--frozen-lockfile" argument used in yarn install rake task
Browse files Browse the repository at this point in the history
--frozen-lockfile is the right name of the argument
  • Loading branch information
guilleiguaran committed Mar 29, 2018
1 parent 480595e commit f9ec3e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion railties/lib/rails/tasks/yarn.rake
Expand Up @@ -3,7 +3,7 @@
namespace :yarn do
desc "Install all JavaScript dependencies as specified via Yarn"
task :install do
system("./bin/yarn install --no-progress --freeze-lockfile --production")
system("./bin/yarn install --no-progress --frozen-lockfile --production")
end
end

Expand Down

0 comments on commit f9ec3e5

Please sign in to comment.