grafana 4.3.2
Also, drop redundant npm install. Grunt is already installed by yarn, so we do not need to install it a second time using npm. This fixes an issue with npm@5 which would screw up the dep tree (removing all other modules) if you try to execute npm install grunt-cli on the existing deptree created by yarn. Closes #14125. Signed-off-by: ilovezfs <ilovezfs@icloud.com>
This commit is contained in:
parent
b57b441c71
commit
7d81f15b40
1 changed files with 2 additions and 5 deletions
|
@ -1,10 +1,8 @@
|
|||
require "language/node"
|
||||
|
||||
class Grafana < Formula
|
||||
desc "Gorgeous metric visualizations and dashboards for timeseries databases."
|
||||
homepage "https://grafana.com"
|
||||
url "https://github.com/grafana/grafana/archive/v4.3.0.tar.gz"
|
||||
sha256 "d81e5fdb7ac702646a4b17343796970c91000ea5ea2036880e0e3e36c7a0a8a5"
|
||||
url "https://github.com/grafana/grafana/archive/v4.3.2.tar.gz"
|
||||
sha256 "02753931d9abb5d94e0695fdb44f5ede0a537cad57a7d60f44125056c04129ab"
|
||||
|
||||
head "https://github.com/grafana/grafana.git"
|
||||
|
||||
|
@ -27,7 +25,6 @@ class Grafana < Formula
|
|||
cd grafana_path do
|
||||
system "go", "run", "build.go", "build"
|
||||
system "yarn", "install"
|
||||
system "npm", "install", "grunt-cli", *Language::Node.local_npm_install_args
|
||||
|
||||
args = ["build"]
|
||||
# Avoid PhantomJS error "unrecognized selector sent to instance"
|
||||
|
|
Loading…
Reference in a new issue