Sha256: 19293b77485697b01be657f7cd955b15f6170035f59b408f52ebb555bc180b72

Contents?: true

Size: 318 Bytes

Versions: 2

Compression:

Stored size: 318 Bytes

Contents

#!/usr/bin/env ruby.exe
APP_ROOT = File.expand_path('..', __dir__)
Dir.chdir(APP_ROOT) do
  begin
    exec "yarnpkg", *ARGV
  rescue Errno::ENOENT
    $stderr.puts "Yarn executable was not detected in the system."
    $stderr.puts "Download Yarn at https://yarnpkg.com/en/docs/install"
    exit 1
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
exception_handler-0.8.0.2 spec/dummy/bin/yarn
exception_handler-0.8.0.1 spec/dummy/bin/yarn