Sha256: 0f050c51ec1b4cb5f8028308c30b9911f7be6eda2aa37c4f32de88065196b10b

Contents?: true

Size: 310 Bytes

Versions: 11

Compression:

Stored size: 310 Bytes

Contents

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

APP_ROOT = File.expand_path("..", __dir__)
Dir.chdir(APP_ROOT) do
  exec "yarnpkg", *ARGV
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

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
mr_common-2.1.0 spec/dummy/bin/yarn
mr_common-2.0.0 spec/dummy/bin/yarn
mr_common-1.3.0 spec/dummy/bin/yarn
mr_common-1.2.0 spec/dummy/bin/yarn
mr_common-1.1.0 spec/dummy/bin/yarn
mr_common-1.0.5 spec/dummy/bin/yarn
mr_common-1.0.4 spec/dummy/bin/yarn
mr_common-1.0.3 spec/dummy/bin/yarn
mr_common-1.0.2 spec/dummy/bin/yarn
mr_common-1.0.1 spec/dummy/bin/yarn
mr_common-1.0.0 spec/dummy/bin/yarn