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.58.0.tar.gz"
|
|
sha256 "71830655a851e6a2bbc97ee30a803a711e57e7ebe7e58d9c166bdc849538b5b5"
|
|
head "https://github.com/facebook/flow.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "a9332fbfc27155007e8c38e925c7d6721659294fd079e1d3cdd794b5a65b7037" => :high_sierra
|
|
sha256 "c3bb5d70244ac615cd64db99c0040110c7e6b1f9946e0657d75dae1b230d83f3" => :sierra
|
|
sha256 "99ca6107bd98527cf667cc88ce926ae3fd68c608184c398fe626ee99fd966282" => :el_capitan
|
|
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
|
|
/* @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:
|