Sha256: 845189cb5b309547378140ce8cfafd6ec9875f970b8c23d3ab73ad2061351311

Contents?: true

Size: 314 Bytes

Versions: 5

Compression:

Stored size: 314 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
    $stderr.puts "Yarn executable was not detected in the system."
    $stderr.puts "Download Yarn at https://yarnpkg.com/en/docs/install"
    exit 1
  end
end

Version data entries

5 entries across 5 versions & 3 rubygems

Version Path
bootstrap_form-4.0.0 demo/bin/yarn
bootstrap_form-4.0.0.alpha1 demo/bin/yarn
bootstrap_form_legacy-4.0.1.dev demo/bin/yarn
comfy_bootstrap_form-4.0.0 demo/bin/yarn
comfy_bootstrap_form-4.0.0.beta2 demo/bin/yarn