Sha256: 27c83e820a53d0bde833b33a12b550a09816ae93ae5cdd90d23b4edc6b0d2a08
Contents?: true
Size: 298 Bytes
Versions: 8
Compression:
Stored size: 298 Bytes
Contents
#!/usr/bin/env ruby APP_ROOT = File.expand_path("..", __dir__) Dir.chdir(APP_ROOT) 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