Sha256: 4cb0bb9e6467accdf45b72e970962e8502e48505a00f0aa23c6714c07cc82d09
Contents?: true
Size: 320 Bytes
Versions: 66
Compression:
Stored size: 320 Bytes
Contents
#!/usr/bin/env ruby VENDOR_PATH = File.expand_path('..', __dir__) Dir.chdir(VENDOR_PATH) do begin exec "yarnpkg #{ARGV.join(' ')}" 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
66 entries across 66 versions & 16 rubygems