diff options
author | Yamagishi Kazutoshi <ykzts@desire.sh> | 2017-06-18 09:57:09 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-06-18 02:57:09 +0200 |
commit | 53e42bf91ef2c705168f8d04b9374c349ec14074 (patch) | |
tree | 564d8607ee6fd7ac27979d157b261c038e9fad61 /bin/yarn | |
parent | 94d0e012dea89058b9c059636fb6d42f6565e534 (diff) |
Upgrade Webpacker to version 2.0 (#3729)
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 |