aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/tasks/yarn.rake
blob: 7c5e266e3e0942ff52ecf5e0c6db5e419d68d4aa (plain) (blame)
1
2
3
4
5
6
7
8
9
namespace :yarn do
  desc "Install all JavaScript dependencies as specified via Yarn"
  task :install do
    system("./bin/yarn install")
  end
end

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