Sha256: ec5a2780ae4b85ac545dbe004bc289d7b9a2059d4ddff08add3a628afa9dba1c

Contents?: true

Size: 287 Bytes

Versions: 3

Compression:

Stored size: 287 Bytes

Contents

#!/usr/bin/env ruby
APP_ROOT = File.expand_path('..', __dir__)
Dir.chdir(APP_ROOT) do
  begin
    exec 'yarnpkg', *ARGV
  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

3 entries across 3 versions & 2 rubygems

Version Path
ito-0.4.0 test/dummy/bin/yarn
orats-5.2.2 lib/orats/templates/base/bin/yarn
orats-5.2.1 lib/orats/templates/base/bin/yarn