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