aboutsummaryrefslogblamecommitdiffstats
path: root/railties/lib/rails/tasks/yarn.rake
blob: 87476b1b8cab09ec9073f074c6710de5cb4e975b (plain) (tree)
1
2
3
4
5
6
7
8


                                                                  
                                              



                                                                                           


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

# Run Yarn prior to Sprockets assets precompilation, so dependencies are available for use.
if Rake::Task.task_defined?("assets:precompile")
  Rake::Task["assets:precompile"].enhance [ "yarn:install" ]
end