diff options
Diffstat (limited to 'bin/yarn')
-rwxr-xr-x | bin/yarn | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/bin/yarn b/bin/yarn deleted file mode 100755 index c2bacef83..000000000 --- a/bin/yarn +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env ruby -VENDOR_PATH = File.expand_path('..', __dir__) -Dir.chdir(VENDOR_PATH) 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 |