1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Make Yarn quieter during precompilation as that is typically run by a deploy tool like Capistrano and we dont need the play-by-play

This commit is contained in:
David Heinemeier Hansson 2017-01-19 14:04:06 +01:00
parent 190b82aee8
commit df3351dfe5

View file

@ -1,7 +1,7 @@
namespace :yarn do
desc "Install all JavaScript dependencies as specified via Yarn"
task :install do
system("./bin/yarn install")
system('./bin/yarn install --no-progress')
end
end