Sha256: b719479585323c2a2bf72d9541460803e1d258fdb119f127d6bc07987c0e82dc
Contents?: true
Size: 318 Bytes
Versions: 7
Compression:
Stored size: 318 Bytes
Contents
#!/usr/bin/env ruby # frozen_string_literal: true 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
7 entries across 7 versions & 1 rubygems