57 lines
1.7 KiB
Ruby
57 lines
1.7 KiB
Ruby
class Flow < Formula
|
|
desc "Static type checker for JavaScript"
|
|
homepage "https://flowtype.org/"
|
|
url "https://github.com/facebook/flow/archive/v0.53.0.tar.gz"
|
|
sha256 "7e806600b6ac9097371cf02a2e416adf15ced4f781fd5f1420e0566b6e6cb8ad"
|
|
head "https://github.com/facebook/flow.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "74b774c3deaa855f4d79d8287c289f3f224218db718dd3b83a68c78e2417b1b9" => :sierra
|
|
sha256 "5c7a5de5955bcecc45ef86ee5e01379a1a0154147bd11914cae0e35d8cc4ac4c" => :el_capitan
|
|
sha256 "8276c6898fcf84a348d044d101febcd67e144701e66ee7ac858bfb4883ad4d5d" => :yosemite
|
|
end
|
|
|
|
depends_on "ocaml" => :build
|
|
depends_on "opam" => :build
|
|
|
|
# Fix "compilation of ocaml-migrate-parsetree failed"
|
|
# Reported 24 Jul 2017 https://github.com/ocaml/opam/issues/3007
|
|
patch :DATA
|
|
|
|
def install
|
|
system "make", "all-homebrew"
|
|
|
|
bin.install "bin/flow"
|
|
|
|
bash_completion.install "resources/shell/bash-completion" => "flow-completion.bash"
|
|
zsh_completion.install_symlink bash_completion/"flow-completion.bash" => "_flow"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/flow", "init", testpath
|
|
(testpath/"test.js").write <<-EOS.undent
|
|
/* @flow */
|
|
var x: string = 123;
|
|
EOS
|
|
expected = /Found 1 error/
|
|
assert_match expected, shell_output("#{bin}/flow check #{testpath}", 2)
|
|
end
|
|
end
|
|
|
|
__END__
|
|
diff --git a/Makefile b/Makefile
|
|
index 515e581..8886bf6 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -174,8 +174,8 @@ all-homebrew:
|
|
export OPAMYES="1"; \
|
|
export FLOW_RELEASE="1"; \
|
|
opam init --no-setup && \
|
|
- opam pin add flowtype . && \
|
|
- opam install flowtype --deps-only && \
|
|
+ opam pin add -n flowtype . && \
|
|
+ opam config exec -- opam install flowtype --deps-only && \
|
|
opam config exec -- make
|
|
|
|
clean:
|