diff --git a/Formula/n/npm-check-updates.rb b/Formula/n/npm-check-updates.rb index f043f352a313c..00ee76f5255d0 100644 --- a/Formula/n/npm-check-updates.rb +++ b/Formula/n/npm-check-updates.rb @@ -1,5 +1,3 @@ -require "language/node" - class NpmCheckUpdates < Formula desc "Find newer versions of dependencies than what your package.json allows" homepage "https://github.com/raineorshine/npm-check-updates" @@ -20,7 +18,7 @@ class NpmCheckUpdates < Formula depends_on "node" def install - system "npm", "install", *Language::Node.std_npm_install_args(libexec) + system "npm", "install", *std_npm_args bin.install_symlink Dir["#{libexec}/bin/*"] end