Sha256: 9c801becb725c9dc744d8725828fa10475396f84fbd4179ff49622861b9313bd
Contents?: true
Size: 320 Bytes
Versions: 84
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
84 entries across 84 versions & 7 rubygems