Sha256: a0256f77a542756f76ffc7c52adc83ed5deefc129727184b88de7dbf57b49d3f

Contents?: true

Size: 335 Bytes

Versions: 1

Compression:

Stored size: 335 Bytes

Contents

#!/usr/bin/env ruby
# frozen_string_literal: true

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

1 entries across 1 versions & 1 rubygems

Version Path
bemer-0.1.0 spec/dummy/bin/yarn