2016-04-27 18:08:44 +02:00
|
|
|
module Language
|
|
|
|
module Node
|
|
|
|
def self.npm_cache_config
|
|
|
|
"cache=#{HOMEBREW_CACHE}/npm_cache\n"
|
|
|
|
end
|
|
|
|
|
2017-05-31 04:57:28 +01:00
|
|
|
def self.pack_for_installation
|
|
|
|
# Homebrew assumes the buildpath/testpath will always be disposable
|
|
|
|
# and from npm 5.0.0 the logic changed so that when a directory is
|
|
|
|
# fed to `npm install` only symlinks are created linking back to that
|
|
|
|
# directory, consequently breaking that assumption. We require a tarball
|
|
|
|
# because npm install creates a "real" installation when fed a tarball.
|
|
|
|
output = Utils.popen_read("npm pack").chomp
|
2017-06-10 20:12:55 +03:00
|
|
|
raise "npm failed to pack #{Dir.pwd}" unless $CHILD_STATUS.exitstatus.zero?
|
2017-05-31 04:57:28 +01:00
|
|
|
output
|
|
|
|
end
|
|
|
|
|
2016-04-27 18:08:44 +02:00
|
|
|
def self.setup_npm_environment
|
|
|
|
npmrc = Pathname.new("#{ENV["HOME"]}/.npmrc")
|
|
|
|
# only run setup_npm_environment once per formula
|
|
|
|
return if npmrc.exist?
|
|
|
|
# explicitly set npm's cache path to HOMEBREW_CACHE/npm_cache to fix
|
|
|
|
# issues caused by overriding $HOME (long build times, high disk usage)
|
|
|
|
# https://github.com/Homebrew/brew/pull/37#issuecomment-208840366
|
|
|
|
npmrc.write npm_cache_config
|
|
|
|
# explicitly use our npm and node-gyp executables instead of the user
|
|
|
|
# managed ones in HOMEBREW_PREFIX/lib/node_modules which might be broken
|
2017-06-19 01:26:52 +05:30
|
|
|
begin
|
|
|
|
ENV.prepend_path "PATH", Formula["node"].opt_libexec/"bin"
|
|
|
|
rescue FormulaUnavailableError
|
|
|
|
nil
|
|
|
|
end
|
2016-04-27 18:08:44 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.std_npm_install_args(libexec)
|
|
|
|
setup_npm_environment
|
|
|
|
# tell npm to not install .brew_home by adding it to the .npmignore file
|
|
|
|
# (or creating a new one if no .npmignore file already exists)
|
2016-09-10 10:38:35 +01:00
|
|
|
open(".npmignore", "a") { |f| f.write("\n.brew_home\n") }
|
2017-05-31 04:57:28 +01:00
|
|
|
|
|
|
|
pack = pack_for_installation
|
|
|
|
|
2016-04-27 18:08:44 +02:00
|
|
|
# npm install args for global style module format installed into libexec
|
2017-05-31 04:57:28 +01:00
|
|
|
%W[
|
|
|
|
--verbose
|
|
|
|
--global
|
|
|
|
--prefix=#{libexec}
|
|
|
|
#{Dir.pwd}/#{pack}
|
|
|
|
]
|
2016-04-27 18:08:44 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.local_npm_install_args
|
|
|
|
setup_npm_environment
|
|
|
|
# npm install args for local style module format
|
|
|
|
["--verbose"]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|