24aa2d1d4c
Closes #33510. Signed-off-by: FX Coudert <fxcoudert@gmail.com>
26 lines
1 KiB
Ruby
26 lines
1 KiB
Ruby
class Yarn < Formula
|
|
desc "JavaScript package manager"
|
|
homepage "https://yarnpkg.com/"
|
|
# Should only be updated if the new version is listed as a stable release on the homepage
|
|
url "https://yarnpkg.com/downloads/1.12.1/yarn-v1.12.1.tar.gz"
|
|
sha256 "09bea8f4ec41e9079fa03093d3b2db7ac5c5331852236d63815f8df42b3ba88d"
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on "node" => :recommended
|
|
|
|
conflicts_with "hadoop", :because => "both install `yarn` binaries"
|
|
|
|
def install
|
|
libexec.install Dir["*"]
|
|
(bin/"yarn").write_env_script "#{libexec}/bin/yarn.js", :PREFIX => HOMEBREW_PREFIX, :NPM_CONFIG_PYTHON => "/usr/bin/python"
|
|
(bin/"yarnpkg").write_env_script "#{libexec}/bin/yarn.js", :PREFIX => HOMEBREW_PREFIX, :NPM_CONFIG_PYTHON => "/usr/bin/python"
|
|
inreplace "#{libexec}/package.json", '"installationMethod": "tar"', '"installationMethod": "homebrew"'
|
|
end
|
|
|
|
test do
|
|
(testpath/"package.json").write('{"name": "test"}')
|
|
system bin/"yarn", "add", "jquery"
|
|
system bin/"yarn", "add", "fsevents", "--build-from-source=true"
|
|
end
|
|
end
|