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

Version Path
incredible-0.0.8.pre spec/dummy/bin/yarn
shoppy_cartus-0.1.2 spec/dummy/bin/yarn
shoppy_cartus-0.1.1 spec/dummy/bin/yarn
shoppy_cartus-0.1.0 spec/dummy/bin/yarn
incredible-0.0.7.pre spec/dummy/bin/yarn
incredible-0.0.6.pre spec/dummy/bin/yarn
incredible-0.0.5.pre spec/dummy/bin/yarn
incredible-0.0.4.pre spec/dummy/bin/yarn