Sha256: f4b30b2b04b773f89b69d592d41a99ea62050413626ea7bc8a50dd5295dba917

Contents?: true

Size: 1.19 KB

Versions: 9

Compression:

Stored size: 1.19 KB

Contents

require "semantic_range"
namespace :webpacker do
  desc "Verifies if Yarn is installed"
  task :check_yarn do
    begin
      yarn_version = `yarn --version`.strip
      raise Errno::ENOENT if yarn_version.blank?

      pkg_path = Pathname.new("#{__dir__}/../../../package.json").realpath
      yarn_range = JSON.parse(pkg_path.read)["engines"]["yarn"]
      is_valid = SemanticRange.satisfies?(yarn_version, yarn_range) rescue false
      is_unsupported = SemanticRange.satisfies?(yarn_version, ">=4.0.0") rescue false

      unless is_valid
        $stderr.puts "Webpacker requires Yarn \"#{yarn_range}\" and you are using #{yarn_version}"
        if is_unsupported
          $stderr.puts "This version of Webpacker does not support Yarn #{yarn_version}. Please downgrade to a supported version of Yarn https://yarnpkg.com/lang/en/docs/install/"
        else
          $stderr.puts "Please upgrade Yarn https://yarnpkg.com/lang/en/docs/install/"
        end
        $stderr.puts "Exiting!"
        exit!
      end
    rescue Errno::ENOENT
      $stderr.puts "Yarn not installed. Please download and install Yarn from https://yarnpkg.com/lang/en/docs/install/"
      $stderr.puts "Exiting!"
      exit!
    end
  end
end

Version data entries

9 entries across 9 versions & 3 rubygems

Version Path
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/webpacker-5.4.4/lib/tasks/webpacker/check_yarn.rake
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/webpacker-5.4.4/lib/tasks/webpacker/check_yarn.rake
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/webpacker-5.4.4/lib/tasks/webpacker/check_yarn.rake
jetpacker-0.7.0 lib/tasks/webpacker/check_yarn.rake
webpacker-5.4.4 lib/tasks/webpacker/check_yarn.rake
jetpacker-0.6.0 lib/tasks/webpacker/check_yarn.rake
webpacker-5.4.3 lib/tasks/webpacker/check_yarn.rake
webpacker-5.4.2 lib/tasks/webpacker/check_yarn.rake
webpacker-5.4.1 lib/tasks/webpacker/check_yarn.rake