Sha256: 4861a592db817f8403d2d086a9a2bce47ced9630ce9d580cebaf8e8d26da376c
Contents?: true
Size: 304 Bytes
Versions: 8
Compression:
Stored size: 304 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 warn 'Yarn executable was not detected in the system.' warn 'Download Yarn at https://yarnpkg.com/en/docs/install' exit 1 end end
Version data entries
8 entries across 8 versions & 2 rubygems