class Flow < Formula desc "Static type checker for JavaScript" homepage "https://flowtype.org/" url "https://github.com/facebook/flow/archive/v0.63.1.tar.gz" sha256 "1069d6460ff2d1f31d0bb5829bb66de78a6db0e417408d9035aea88e127f903f" head "https://github.com/facebook/flow.git" bottle do cellar :any_skip_relocation sha256 "afd01ba31d2141fd51e683a584cf6c2aa41d6858eefa11748114ec76bbb5af1a" => :high_sierra sha256 "03100983a80ccf441de934fd7399dc6710c5c6c979d363f89a2ace2fad097a02" => :sierra sha256 "a60f6abf86964a1be0ea639e7aee784ee5c3ed1f01f465c2abda5539679837b1" => :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: