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

Version Path
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/bootstrap_form-4.5.0/demo/bin/yarn
bootstrap_form-5.1.0 demo/bin/yarn
bootstrap_form-5.0.0 demo/bin/yarn
bootstrap_form-4.5.0 demo/bin/yarn
bootstrap_form-4.4.0 demo/bin/yarn
bootstrap_form-4.3.0 demo/bin/yarn
bootstrap_form-4.2.0 demo/bin/yarn
bootstrap_form-4.1.0 demo/bin/yarn