Sha256: 6786b54049936eb2f7467f0bb5847b7167a400feeda84d7f53471f30f9288d5a
Contents?: true
Size: 318 Bytes
Versions: 25
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
25 entries across 25 versions & 3 rubygems